유용한 색상 선택툴 JS 2008. 5. 24. 03:29 데모 : * 색상을 Click해 주세요. Sample Code : <html> <head> <title>Lewies Color Picker Demonstration</title> <script language=javascript> <!-- function OpenColorPicker(){ var hex = new String(Color.style.backgroundColor); try { hex = window.showModalDialog("/lib/color/ColorPicker.htm", hex, "dialogWidth:488px;dialogHeight:323px;help:no;center:yes;status:no;"); if(hex != null) { Color.style.backgroundColor = "#" + hex; document.f1.COL1.value = "#" + hex; } } catch(e) { alert("Your browser does not appear to support modal dialog boxes."); // insert code here to use a color picker that is more // compatable accross browsers. } } //--> </script> </head> <body> <form name=f1> <div id="Color" onclick="OpenColorPicker()" style="width:100px;height:100px;border:1px solid black;background-color:#0000FF"></div> <input type=text name=COL1> </form> </body> </html> 다운로드 : invalid-file Color 공유하기 게시글 관리 부니기 퍼담는 BLOG 'JS' 관련 글 more 시작페이지 설정 2008.05.24 사업자번호로 사업자종류 구분 2008.05.24 DHTML을 활용한 목록의 총건수 계산 표시 처리 2008.05.24 자바스크립트 코드 암호화 2008.05.24 Posted by 부니기