marquee 怎么样滚动完一次后没有空白的继续滚动
不用JS的情况下。。。
因为。拍拍不支持JS。。。
滚动完一次。。没有空白的就继续滚动下去。
marquee 怎么样滚动完一次后没有空白的继续滚动
不用JS的情况下。。。
因为。拍拍不支持JS。。。
滚动完一次。。没有空白的就继续滚动下去。
只能用js做了,拍拍不让加那就做不了
向左滚动: <div id=demo pic/1.jpg" width="156" height="200" /><img src="pic/2.jpg" width="160" height="198" /><img src="pic/3.jpg" width="155" height="200" /><img src="pic/4.jpg" width="157" height="200" /></td><td id=demo2 valign=top></td></tr></table></div> <script> var speed=30 demo2.innerHTML=demo1.innerHTML function Marquee(){ if(demo2.offsetWidth-demo.scrollLeft<=0) demo.scrollLeft-=demo1.offsetWidth else{ demo.scrollLeft++ } } var MyMar=setInterval(Marquee,speed) demo.onmouseover=function() {clearInterval(MyMar)} demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)} </script>