사이트 내 전체검색
마우스를 따라 다니는 글자
https://cmd.kr/javascript/321 URL이 복사되었습니다.

본문

<html>
<style>
.spanstyle {
position:absolute;
visibility:visible;
top:-50px;
font-size:10pt; // 글씨크기 조절
font-family:돋움; // 글씨체 조절
font-weight:;
color:#299CD6; // 글씨 색상 조절
}
</style>
<head>
<script language="JavaScript">
var x,y
var step=15
var flag=0

var message=" 방문자님 좋은하루 되세요! "
message=message.split("")

var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
xpos[i]=-50
}

var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
ypos[i]=-50
}

function handlerMM(e){
x = (document.layers) ? e.pageX : document.body.scrollLeft+event.clientX
y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY
flag=1
}

function makesnake() {
if (flag==1 && document.all) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y

for (i=0; i<message.length-1; i++) {
var thisspan = eval("span"+(i)+".style")
thisspan.posLeft=xpos[i]
thisspan.posTop=ypos[i]
}
}

else if (flag==1 && document.layers) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y

for (i=0; i<message.length-1; i++) {
var thisspan = eval("document.span"+i)
thisspan.left=xpos[i]
thisspan.top=ypos[i]
}
}
var timer=setTimeout("makesnake()",20)
}
</script>
</head>

<body style="width:100%; overflow-x:hidden;overflow-y:scroll" onload="makesnake()">

<script language="JavaScript">
<!--
for (i=0;i<=message.length-1;i++) {
document.write("<span id='span"+i+"' class='spanstyle'>")
document.write(message[i])
document.write("</span>")
}

if (document.layers){
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
// -->
</script>
</body>
</html>

출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=133

댓글목록

등록된 댓글이 없습니다.

831 (1/17P)

Search

Copyright © Cmd 명령어 18.226.82.163