码迷,mamicode.com
首页 > 其他好文 > 详细

无缝滚动插件速度问题

时间:2019-01-29 20:51:14      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:timer   scrollto   line   插件   function   interval   int   get   iss   

Start:function()
{
if(this.isSmoothScroll)
{
this.AutoScrollTimer = setInterval(this.GetFunction(this,"SmoothScroll"), this.Timeout);
}
else
{
//this.AutoScrollTimer = setInterval(this.GetFunction(this,"AutoScroll"), this.Timeout);//原来的插件中,此句与AutoScroll中的递归重复,导致即使更改了speed也无效,因此在此处改为仅可执行一次的SetTimeOut
this.AutoScrollTimer = setTimeout(this.GetFunction(this, "AutoScroll"), this.Timeout);
}
},

AutoScroll:function()
{
if(this.stopscroll)
{
return;
}
this.ScrollContent.scrollTop++;
if(parseInt(this.ScrollContent.scrollTop) % this.LineHeight != 0)
{
this.ScrollTimer = setTimeout(this.GetFunction(this,"AutoScroll"), this.Speed);
}
else
{
if(parseInt(this.ScrollContent.scrollTop) >= parseInt(this.ScrollContent.scrollHeight) / 2)
{
this.ScrollContent.scrollTop = 0;
}
clearTimeout(this.ScrollTimer);
this.Start();
//this.AutoScrollTimer = setTimeout(this.GetFunction(this,"AutoScroll"), this.Timeout);
}
},

无缝滚动插件速度问题

标签:timer   scrollto   line   插件   function   interval   int   get   iss   

原文地址:https://www.cnblogs.com/DoudouZhang/p/10335350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!