纯js不间断滚动代码 来源: http://www.cssrain.cn/demo/Class-Of-Marquee-Scroll/MSClass.html 使用方法: 应用说明:页面包含 创建实例: //参数直接赋值法 new Marquee("marquee") new Marquee("marquee","top") ...... new Marquee("marquee",0,1,760,52) new Marquee("marquee","top",1,760,52,50,5000)
滚动停顿代码,比较简单的代码希望有用,文件格式html function Roll(obj,obj1,speed,stopPx){ //几个参数的含义是, 外框的名字, 中间放内容的DIV的名字, 滚动动的速度, 每多少象素停一下 if (speed==null){speed=30} if (stopPx==null){stopPx=100} obj=document.getElementById(obj); obj1=document.getElementById(obj1); obj.st