<html>
<head>
<script>
<!--
var cursors = new Array("e-resize","ne-resize","n-resize","se-resize")
var cursorsIndex = 0

var rotationSpeed = 75 // 숫자가 작을수록 빨리 회전합니다
var direction = 1 // 시계방향은 1, 반시계방향은 2

if (direction) cursors.reverse()
function rotateCursor(){
document.body.style.cursor=cursors[cursorsIndex]
cursorsIndex++
if (cursorsIndex==cursors.length) cursorsIndex=0
setTimeout("rotateCursor()",rotationSpeed)
}
window.onload=rotateCursor

//-->
</script>
</head>
<body>
<br><br><br>
</body>
</html>

출처 : 자스코

   

Posted by 알 수 없는 사용자
,