滚动到相对于锚点的位置
我想滚动到锚点上方 20px 的位置。对此最好的解决方案是什么?
编辑:我将使用 scrollTo 与 jquery。无法计算出 window.location.hash。
I'd like to scroll to a position that is for ex 20px above an anchor. What is the best solution for this?
EDIT: I'm going to use scrollTo with jquery. Couldn't figure out window.location.hash.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,滚动到锚点(可能通过设置
window.location.hash
),然后执行window.scrollBy(0, -20)
。Scroll to the anchor (by setting
window.location.hash
, maybe) then dowindow.scrollBy(0, -20)
, for example.