连续骂人 - 避免跳跃?
我正在尝试让无限滚动的股票类型的东西顺利工作。 为了使其连续,我将删除第一个元素,并在它离开视图后将其替换在后面,但这会使容器元素在重新定位元素所需的时间上跳跃一些。
请参阅此处: http://jsfiddle.net/rFwfN/
无论如何都有这个吗?有没有更好的方法使这个滚动元素连续? 我想到克隆这组元素,这样就有两个,这样就可以减少 dom 切换的频率。
I'm trying to get an infinite scrolling ticker type of thing working smoothly.
To make it continuous I am removing the first element and replacing it at the back once it is out of view, but this makes the container element jump a little in the amount of time it takes to reposition the element.
see here: http://jsfiddle.net/rFwfN/
is there anyway around this? is there a better way of making this scrolling element continuous?
I thought of cloning the set of elements so there are two, so making the dom switch less frequent.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://jsfiddle.net/rFwfN/6/
注入前需要重置位置:
http://jsfiddle.net/rFwfN/6/
You need to reset position before injecting:
不知道如何使用 mootools。 Tween 必须在元素注入之前停止,并在注入完成后开始。
Not sure how to do with mootools. Tween must stop before element injection and begin once injection is done.