无缝滚动插件速度问题
Posted doudouzhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无缝滚动插件速度问题相关的知识,希望对你有一定的参考价值。
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);
}
},
以上是关于无缝滚动插件速度问题的主要内容,如果未能解决你的问题,请参考以下文章