Anyone knows how to edit the script in such a way after the last line of the news, the news will scroll up slowly instead of pop out and scroll...
Thanks if anyone can help!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function initializeScroller(){
dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
dataobj.style.top="[COLOR=green][b]150px[/b][/color]"
setTimeout("getdataheight()", initialdelay)
}
function scrollDiv(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed+"px"
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top="[COLOR=green][b]150px[/b][/color]"
setTimeout("scrollDiv()",40)
}