- <html>
- <head>
- <TITLE>animation for all links</TITLE>
- <script>
- <!-- JavaScript 시작 -
- var x,y
- var timer
- var i_fontsize=0
- var step=0
- var thisx,thisy
- function ringup() {
- if (document.all) {
- thisx = x
- thisy = y
- ringup2()
- }
- }
- function ringup2() {
- if (i_fontsize<=1530) {
- document.all.ring.style.fontSize=i_fontsize
- document.all.ring.style.color="gray"
- document.all.ring.style.posLeft=thisx-(Math.floor(i_fontsize/3))
- document.all.ring.style.posTop=thisy-(Math.floor(i_fontsize/1.4))
- step+=4
- i_fontsize+=step
- timer=setTimeout("ringup(2)",300)
- }
- else {
- clearTimeout(timer)
- i_fontsize=0
- step=0
- document.all.ring.style.posTop=-10000
- }
- }
- function handlerMM(e){
- x = (document.layers) ? e.pageX : event.clientX
- y = (document.layers) ? e.pageY : event.clientY
- }
- document.onmousemove = handlerMM;
- // - JavaScript 끝- -->
- </script>
- <STYLE>
- .ringstyle {
- position:absolute;
- visibility:visible;
- top:-50px;
- font-size:5pt;
- font-family:Verdana;
- color:GREEN
- }
- .explain {
- position:absolute;
- top:80px;
- left:40px;
- width:480px;
- color:GREEN;
- text-align:center;
- font-size:10pt;
- font-family:Times;
- }
- A { font-family: Times;
- color: GREEN;
- text-decoration:underline
- }
- A:visited {
- color: GREEN;
- }
- </STYLE>
- </HEAD>
- <body bgcolor="#000000" SCROLL=NO>
- Internet Explorer 4.x이상
- <DIV id="ring" class="ringstyle">OXTAG.COM</DIV>
- <DIV id="redirection" class="explain"><p> <body onload="javascript:for(i=1;i<30;i++){ringup();}"><p></DIV>
- </body>
- </html>
반응형
'인터넷정보' 카테고리의 다른 글
자바스크립트와 테이터베이스 연동 (0) | 2007.10.18 |
---|---|
자바스크립트와 테이터베이스 연동 (0) | 2007.10.18 |
TextField의 Align - 텍스트 정렬 및 콤마 찍기 (0) | 2007.10.18 |
TextField의 Align - 텍스트 정렬 및 콤마 찍기 (0) | 2007.10.18 |
텍스트 애니메이션 (0) | 2007.10.18 |
웹페이지 대화상자 (부모창 위에 새창이 항상 최상위에 존재) (0) | 2007.10.18 |
웹페이지 대화상자 (부모창 위에 새창이 항상 최상위에 존재) (0) | 2007.10.18 |
input 또는 폼안의 포커스 이동 및 글자 길이 제한 (0) | 2007.10.18 |
input 또는 폼안의 포커스 이동 및 글자 길이 제한 (0) | 2007.10.18 |
다중 셀렉트(select) 박스 3 (0) | 2007.10.18 |