한국어
웹 페이지 특수 효과 예제 코드, 그림으로 구현되는 멋진 마우스 뒤집기 효과
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4 / Loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=gb2312"> <title>사진으로 얻은 멋진 효과 downcodes.com</ title> <style type="text/css"> <!-- body {text-align:center} 테이블 {border:1px solid #eeeeee;padding:3px 0;border-bottom-width:5px} .icon td { 너비:50px;높이:37px;배경 이미지:url()} .capt td {font:normal 11px verdana;padding:2px 0} .a {배경 위치-y:0px} .b {배경 위치-y :-37px} .c {배경 위치-y:-74px} .d {배경 위치-y:-111px} .e {배경 위치-y:-148px} .f {배경 위치-y:- 185px} .g {배경 위치-y:-222px} .f1 {배경 위치-x:0px} .f2 {배경 위치-x:-51px} .f3 {배경 위치-x:-101px} . f4 {배경 위치-x:-153px} .f5 {배경 위치-x:-205px} .f6 {배경 위치-x:-257px} .f7 {배경 위치-x:-309px} --> </style> <script 언어="javascript"> window.onload=function(){ var t=document.getElementsByTagName('table')[0] var cs=t.rows[1].cells,ct=t .rows[0].cells; for(var i=0;i<cs.length;i++) cssAni(cs[i],ct[i],7) } 함수 cssAni(osrc,otarget,num,duration) { //////// //IE 전용 //by mozart0, 2007.06.09 //////// var t=null,c=1,d=0,n=0,i=Math. Floor((duration||300)/num); var s=otarget.className.replace(/.$/,''),r=/over/ osrc.onmouseover=osrc.onmouseout=function(e){ n =r.test((e||event).type)?1:-1; if(!t) t=setInterval(function(){ if((c==1||c==num)&&(( d==n||c+n<1)||!(d=n))) returnclearInterval(t),t=null; otarget.className=s+(c+=d) },i); } </script> </head> <body> 마우스가 A, B, C, D, E, F, G 문자를 가리킵니다. 효과 보이시죠!! ㅎㅎ<table> <tr class='icon'> <td class='a f1'></td> <td class='b f1'></td> <td class =' c f1'></td> <td class='d f1'></td> <td class='e f1'></td> <td class='f f1'></td> < td 클래스 ='g f1'></td> </tr> <tr class='capt'> <td><a href='#;'>A</a></td> <td><a href= '#;'>B</a></td> <td><a href='#;'>C</a></td> <td><a href='#;'>D </td> a></td> <td><a href='#;'>E</a></td> <td><a href='#;'>F</a></td> <td ><a href='#;'>G</a></td> </tr> </table> </body> </html>