본문 바로가기

반응형

Story

Mssql To Xml Mssql To Xml 출처 : http://bytes.com/topic/asp-classic/answers/728740-mssql-xml 더보기
반응형 웹 - IE9 이전 버전에서도 작동되게 하기 CSS3 @media 쿼리는 IE6~8 브라우저에서는 지원되지 않는다. 그래서 Javascript로 구현된 respond.js를 이용해서 이 문제를 해결해야한다. https://github.com/scottjehl/Respond 에서 git로 받거나 zipbal이나 tarbal을 받아서 respond.min.js를 코드에 추가한다. respond.js를 추가한 코드를 IE8에서 적용을 해보자. (respond.js는 IE6까지 지원한다.) ... 출처 : http://otep.tistory.com/81 respond.src.js /*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott .. 더보기
이미지 확대 효과 (돋보기 효과) JQZoom 이미지 확대 효과 (돋보기 효과) JQZoom http://www.mind-projects.it/projects/jqzoom/demos.php Add first the last jQuery release, then the jQZoom script(don't forget this),the correct order is important.Look at the installation code below. Add jqzoom.css to your header. How to use Using jQZoom is easy,but you need to specify the HTML anchor element,that is going to generate the zoom revealing a portion of the .. 더보기
뱅크다 이용 무통장입금 처리 뱅크다 이용 무통장입금 처리 뱅크다 참조 $agent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)'; $cookie_nm = './cookie.txt'; $url = "https://www.bankda.com/dtsvc/xmldown.php"; $param = "xml_userid=" . $xml_userid . "&xml_pwd=" . $xml_pwd . "&xml_acctno=" . $xml_acctno . "&xml_date=" . $xml_date . "&xml_bkcode=" . $xml_bkcode; $result = array(); $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL,$url); //접속할.. 더보기
asp c# .net 에서 mysql password 값을 만들기 mysql 4.1 이하 버전용 [OLD_PASSWORD] public static string mysql_old_password(string sPassword) { UInt32[] result = new UInt32[2]; bool bDebug = false; UInt32 nr = (UInt32)1345345333, add = (UInt32)7, nr2 = (UInt32)0x12345671; UInt32 tmp; char [] password = sPassword.ToCharArray(); int i; for (i = 0; i http://stackoverflow.com/questions/868482/simulating-mysqls-password-encryption-using-net-or-ms-sql .. 더보기
Regex Selector for jQuery Regex Selector for jQuery :regex jQuery.expr[':'].regex = function(elem, index, match) { var matchParams = match[3].split(','), validLabels = /^(data|css):/, attr = { method: matchParams[0].match(validLabels) ? matchParams[0].split(':')[0] : 'attr', property: matchParams.shift().replace(validLabels,'') }, regexFlags = 'ig', regex = new RegExp(matchParams.join('').replace(/^\s+|\s+$/g,''), regexF.. 더보기
세로로 글씨 쓰기 writing-mode: tb-rl; -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -o-transform: rotate(90deg); 세로로 글씨 쓰기 세로로 글씨 쓰기 더보기
보색 구하기 complementary color , Opposite Color COLOR OPPOSITE 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF - 소스 COLOR OPPOSITE 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF 출처 : http://www.colortools.net/color_complementary.html Opposite Color Tool.. 더보기
youtube javascript 로 동작 제어하기 youtube javascript 로 동작 제어하기 원본 You need Flash player 8+ and JavaScript enabled to view this video. Video 1 Video 2 Play Pause 위의 소스에서 embedSWF 를 사용하지 않고 해보려고 하는대 object tag 로 하면 계속 오류가 발생했다. 하지만 classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 를 적어주니 이 기능들이 동일하게 동작하였다. 수정하는 동안 원본 페이지를 닫아 버려서 원본 주소는 잊어 버렸다. 변형본 Video 1 Video 2 Play Pause Video 1 Video 2 Play Pause Look at the source code for.. 더보기
Basic JQuery Selector 컨트롤할 HTML태그를 셀렉터(Selector)로 지정할 수 있다. $(function(){ $(“셀렉터“).jQuery 명령 }); 1. CSS 셀렉터들 1.1 태그셀렉터 예] ‘목록태그의 css 컬러 속성값을 블루로 바꿔라’ $(function(){ $(“li“).css(“color“,”blue“); }); 1.2 ID셀렉터, Class(클래스)셀렉터 예] ‘목록태그중 id=”first”인 요소를 찾아 css컬러 속성값을 블루로 바꿔라’ $(function(){ $(“li#first“).css(“color“,”blue“); }); 예] ‘목록태그중 class=”first”인 요소를 찾아 css컬러 속성값을 블루로 바꿔라’ $(function(){ $(“li.first“).css(“color“,”blu.. 더보기

반응형