|
Volgend script bij personaliseer en vrije tekst/html zetten (brontekst" aanvinken!:
<script>
var cursors = new Array("e-resize","ne-resize","n-resize","se-resize")
var cursorsIndex = 0
var rotationSpeed = 99 //
var direction = 0 // 1
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>
02-12-2011 om 12:12
geschreven door Els
|