<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>
출처 : 자스코
반응형
'인터넷정보' 카테고리의 다른 글
메뉴에 마우스오버시 배경색이 이동하면서 바뀌는 스크립트 (0) | 2007.10.17 |
---|---|
메뉴에 마우스오버시 배경색이 이동하면서 바뀌는 스크립트 (0) | 2007.10.17 |
레이어 사용시 Select 객체에 가려지는 문제에 대한 해결책 (0) | 2007.10.17 |
레이어 사용시 Select 객체에 가려지는 문제에 대한 해결책 (0) | 2007.10.17 |
마우스커서 회전시키기 (0) | 2007.10.17 |
이미지 업로드 미리보기 기능 (0) | 2007.10.17 |
이미지 업로드 미리보기 기능 (0) | 2007.10.17 |
음악가사(자막) 띄우기 (0) | 2007.10.17 |
음악가사(자막) 띄우기 (0) | 2007.10.17 |
레이어 이동 기능 켜기/끄기 (0) | 2007.10.17 |