To enable a pause before the content scrolls back up and downwards again, use the below movedown() function instead:
Code:
function movedown(){
if (window.moveupvar) clearTimeout(moveupvar)
if (iens6){
if (parseInt(crossobj.style.top)>=(contentheight*(-1)+100)){
crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
movedownvar=setTimeout("movedown()",20)
}
else
movedownvar=setTimeout("crossobj.style.top=0; movedown()", 1000)
}
}
Here 1000 means wait for 1 second- you can change that to your own.
Bookmarks