首页 相关文章 JavaScript标题新闻的定时翻滚(IE,FF,Opera,Safari,Chrome)

JavaScript标题新闻的定时翻滚(IE,FF,Opera,Safari,Chrome)

下面是主要代码:

程序代码
var Scroll=Class.create();
Scroll.prototype={
//第一个参数定义要滚动的区域,第二个参数定义每次滚动的高度
initialize:function(element,height,delay){
this.element=$(element);
this.element.innerHTML+=this.element.innerHTML;
this.height=height;
this.delay=delay*1000;
this.maxHeight=this.element.scrollHeight/2;
this.counter=0;
this.scroll();
this.timer="";
this.element.onmouseover=this.stop.bind(this);
this.element.onmouseout=function(){this.timer=setTimeout(this.scroll.bind(this),1000);}.bin...[ 查看全文 ]

2016-02-19 标签:

JavaScript标题新闻的定时翻滚(IE,FF,Opera,Safari,Chrome)的相关文章

手机页面
收藏网站 回到头部