Very smooth JS image scrolling effect code, seamless loop, customizable speed, and stops when the mouse hovers. Its characteristic is that JS and image addresses are separated. In this way, you can easily and dynamically call the address of each image from the database, which is convenient for control, so it is very practical.
.org/1999/xhtml">
< title>Image scroll
<script> <br><!-- <BR>var speed=10; <BR>var tab=document.getElementById("demo"); <BR>var tab1=document.getElementById("demo1"); <BR>var tab2=document.getElementById("demo2"); <BR>tab2.innerHTML=tab1.innerHTML; <BR>function Marquee(){ <BR>if(tab2.offsetWidth-tab.scrollLeft<=0) <BR>tab.scrollLeft-=tab1.offsetWidth <BR>else{ <BR>tab.scrollLeft ; <BR>} <BR>} <BR>var MyMar =setInterval(Marquee,speed); <BR>tab.onmouseover=function() {clearInterval(MyMar)}; <BR>tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)}; <BR>- -> <br></script>