滚动行为让我感到困惑
我有一些溢出隐藏的div。其中有 li 元素,我尝试将 div 进一步滚动到 6 个元素的滚动顶部(带有按钮)。
但是滚动行为让我感到困惑。 onclick 它会在下次单击到实际位置时滚动到元素的中间,并且不会滚动到末尾。 有人可以帮助我吗?
PS 抱歉我的学校英语:)
I have some overflow hidden div. inside of it there are li elements and I try to scroll the div to the scrolltop of 6 elements further (with buttons).
But the scrollbehavior is confusing me.
onclick it scroll to the middle of the element on the next click to the real position and it dont scrolling to the end.
could somebody help me please.
ps sorry for my school english :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题在于您正在使用
offset()
来检索元素相对于页面的当前位置 - 但由于您四处移动这些元素,因此偏移量变化。尝试此解决方案:
您将需要进行一些其他更改以检查是否可以进一步向下滚动,否则
i
不得增加。向上滚动也是如此。I think the problem is that you're using
offset()
which retrieves the current position of an element relative to the page - but since you move those elements around, the offset changes.Try this solution:
You will need to make some other changes to check if you can scroll further down, otherwise
i
must not be incremented. Same goes for scrolling up.