在滚动时停止 Effect.ScrollTo() ?
是的,基本上我有这个:
Effect.ScrollTo("bottom", { duration: 5.0 });
所以我想要的是在它滚动时停止这种效果,只要我想。
有什么帮助吗?
Yeah, basically I have this:
Effect.ScrollTo("bottom", { duration: 5.0 });
So what I want is to stop this effect while it's scrolling whenever I want to.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面的代码非常适合我:
This code below works perfectly for me:
我目前正在做的工作是有一个div,如下所示:
然后让JavaScript取消滚动并将其移回原来的位置:
它可以工作,但在较慢的浏览器上,您可以看到页面如何跳回到顶部,然后再回来。
What I currently have working currently is having a div as follows:
Then having the JavaScript cancel the scrolling and move it back to where the original position was:
It works, but on slower browsers you can see how the page jumps back to the top and then back again.