prev 2020. 03 next
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 수 87
번호
글쓴이
공지 HTML HTML 기초 다지기 4
오작교
217831   2008-06-17 2010-08-19 13:08
공지 HTML HTML과 CSS의 종합 정리 1
오작교
265580   2007-10-01 2010-08-19 12:45
공지 일반 스타일시트의 총정리
오작교
233902 14 2006-09-14 2010-08-19 12:45
47 Script 아이프레임에서 내용에 따라 크기조정하기
오작교
16694 13 2006-04-19 2006-04-19 14:23
웹상에서 iframe를 불러 들였을 때 iframe 내용에 따라 자동으로 크기가 조절 되는 스크립트 입니다. 부모 페이지와 iframe 내용에 해당하는 페이지가 다른 도메인일 때도 가능합니다. 방법은 간단 합니다. 밑의 자바 스크립트를 iframe의 내용에 해당하는 페...  
46 Script 이미지를 뒤집자
오작교
16743 16 2006-09-14 2006-09-14 13:01
img src=https://www.yeoyoo.com/script/images/bottom_03_over.gif> span style=filter:flipv();height:1px;>-- 상하로 뒤집기 img src=https://www.yeoyoo.com/script/images/bottom_03_over.gif> span style=filter:flipH();height:1px;>-- 옆으로 뒤집기 ...  
45 Script 키보드를 사용할 수 없게 하자
오작교
16774   2009-04-14 2009-04-14 15:52
키보드를 눌러보세요.. script language="JavaScript"> !-- function keypressed() { alert("키보드는 사용할 수 없습니다."); } document.onkeydown=keypressed; // /script>  
44 Script 웹문서에 페이지 로딩중 효과
오작교
16823 26 2006-05-06 2006-05-06 20:34
로딩이 길어지는 문서에 페이지가 다 뜨기전에 '로딩중' 이라는 글씨를 나오게 합니다. 헤드부분에 <script language=javascript> n = document.layers ie = document.all function hide() { if (ie || n) { if (n) document.Load.visibility = "hidden" else ...  
43 Script 우측키 사용금지하는 소스
오작교
16887 7 2006-04-17 2006-04-17 15:24
<!-- body와 body 사이에 넣는다> <script language="JavaScript"> <!-- function click() { if ((event.button==2) || (event.button==3)) { alert('눌러서 뭐하게?'); } } document.onmousedown=click if (navigator.appName == "Netscape") { document.capt...  
42 Script 말풍선 투명하게 만들기
오작교
17253 25 2006-04-16 2006-04-16 22:15
<html> <head> <script language="JavaScript"> <!-- function alt( msg, _width, _height ){ var _style = alt_div.style; if( msg != null ){ alt_div.innerHTML = msg; _style.visibility = "visible"; if( _width != null ){ if( alt_div.offsetWidth > _w...  
41 Script 글자만으로 입체버튼 만들기
오작교
17363 13 2006-09-14 2006-09-14 11:46
<head>에 <style type="text/css"> a:visited {text-decoration:none; color:white;} a:link {text-decoration:none; color:white;} a:hover {text-decoration:none; color:white;} .first {border:1 solid #D76704; color:white;text-align:center;padding:2 ...  
40 Script 부드럽게 펼쳐지는 가로 메뉴
오작교
17443 15 2006-04-16 2006-04-16 22:56
is = {}; is.agent = navigator.userAgent.toLowerCase(); is.ie4 = (is.agent.indexOf("msie 4") != -1); is.ie5 = (is.agent.indexOf("msie 5") != -1); is.ie55 = (is.agent.indexOf("msie 5.5") != -1); is.ie6 = (is.agent.indexOf("msie 6") != -1); is...  
39 Script 윈도우 객체.. 새 창 관련
오작교
17574   2015-05-12 2015-10-13 08:14
window 객체 ......................................................... 아래는 최상위 window객체가 가진 속성과 메서드,이벤트 핸들러의 종류를 훓어보고 몇가지 예제를 해본다. 필요한 작업이 있을 때마다 객체를 찾아보고 속성이 있나, 메서드를 가졌나...  
38 Script 주민등록번호 확인 스크립트
오작교
17731 32 2006-05-06 2006-05-06 20:37
주민번호를 넣고 체크 버튼을 눌러서 확인해 보세요 - '9') { i3=i3+1 } } if ((str_jumin1 == '') || ( i3 != 0 )) { error(jumins.jumin1,'주민등록번호가 잘못되었습니다.\n\n다시입력해주세요!'); } var i4=0 for (var i=0;i'9') { i4=i4+1 } } if ((str_j...  
37 Script 랜덤 이미지 스크립트
오작교
17819 10 2006-05-21 2006-05-21 18:40
<Script Language ="JavaScript"> <!-- function RandomNumber() { var today = new Date(); var num= Math.abs(Math.sin(today.getTime()/1000)); return num; } function RandomGraphics() { var x = RandomNumber(); if (x > .77) {document.write ("<img s...  
36 Script 모서리가 둥근 테이블 만들기
오작교
17824 10 2007-03-28 2007-03-28 13:41
Radius 값이 2일때 : Cell 1 Cell 2 모서리가 둥근 테이블 테스트 Radius 값이 6일때 : Cell 1 Cell 2 모서리가 둥근 테이블 테스트   <head> <title>https://www.dajuji.com</title> <script language="javascript"> function roundTable(objID) { var obj =...  
35 Script JavaScript Method
오작교
17898   2007-10-23 2007-10-23 17:18
자바스크립트 Event 항목 모음 Event 설 명 OnLoad 현 페이지가 로딩되었을 경우 OnUnload 현 페이지에서 다른 페이지로 이동할 경우 OnError 현 페이지를 읽는 중에 자바스크립트 에러가 날 경우 OnAbort 이미지를 읽는 도중 중지하였을 경우 OnMouseOver 마...  
34 Script 중요 키 막기
오작교
18079   2007-10-23 2007-10-23 17:03
// 중요키 막기 document.onkeydown=KeyEventHandle; document.onkeyup=KeyEventHandle; function KeyEventHandle() { if((event.ctrlKey == true && (event.keyCode == 78 || event.keyCode == 82)) || (event.keyCode >= 112 && event.keyCode SCRIPT LANGU...  
33 Script 새창 띄우기 창닫기 -2
멋진그대
18334 17 2007-01-29 2007-01-29 14:54
창닫기 버턴 <input type="submit" value="창닫기" onclick="window.close()"> or <a href="#" onClick="parent.close()">창닫기</a> 이전 페이지로 가기 <input type="submit" value="이전" onclick="history.back()"> or <a href="#" onClick="history.ba...  
32 Script 시간에 따라 바뀌는 배경화면
오작교
18405 9 2006-04-17 2006-04-17 15:26
<script language="JavaScript"> /*배경설정이 적용되려면 body태그 내에 지정된 배경이미지가 없어야 합니다.*/ day=new Date() x=day.getHours() if(x>=0 && x<4) { //밤 12시 부터 새벽 4시 document.write('<body background="이미지주소">') document.wri...  
31 Script 마우스를 클릭하면 소스 클립보드로 복사하기 1
오작교
18536   2008-07-08 2008-07-08 09:23
홈페이지같은데 가면 뭘 클릭하면 클립보드에 내용이 자동적으로 복사된다. 그것의 소스다. <!-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> --> <html> <head> <meta http-equiv="content-type" content="text/html; charset=euc-kr">...  
30 Script '즐겨찾기에 추가하기' 버튼 넣기
오작교
18544 11 2006-09-14 2006-09-14 10:40
헤드부분에 <script language="JavaScript1.2"> var url="즐겨찾기에 추가할 주소" var title="즐겨찾기에 표시할 타이틀" function addfavorites() { if (document.all) window.external.AddFavorite(url,title) } </script> 클릭할 버튼이나 이미지,텍스트에...  
29 Script 움직임이 부드러운 슬라이딩 TIP 버튼
오작교
18570 22 2006-05-06 2006-05-06 20:33
문서가 아주 길 경우, 탑버튼을 넣어주어 한번에 위로 올려주는 버튼 만드는 방법 입니다. 우선 아래 소스를 복사하여 js파일을 만듭니다. function back_top() { x = document.body.scrollLeft; y = document.body.scrollTop; step = 2; while ((x != 0) || (...  
28 Script 글자 뒤집기
오작교
18651 11 2006-11-29 2010-10-07 08:21
 
XE Login