Scriptnya
adalah :
<!--
ONE STEP TO INSTALL ROTATING CURSORS SCRIPT:
1.
Copy the coding into the HEAD of your HTML document -->
<!--
STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<script>
<!--
var cursors = new
Array("e-resize","ne-resize","n-resize","se-resize")
var cursorsIndex = 0
var rotationSpeed = 75 // decrease the
value to increase the rotation speed and vice versa.(The value MUST be positive.)
var direction = 1 // 1 to rotate clockwise
and 0 to rotate counter-clockwise
//*********Do Not Edit Below********
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>
EmoticonEmoticon