一旦滚动到,侧边元素就会固定到页面顶部
我什至不确定我是否正确描述了这一点,但基本上我想按照 www.okcupid.com 设置的方式显示排行榜广告。
我发现这个问题很有帮助(http://stackoverflow.com/questions/3303173/position-element-fixed-vertically-absolute-horizontally),但它保持不变。我希望它随页面滚动,直到到达顶部,然后修复。有什么想法吗?
I'm not even sure I'm describing this properly, but basically I want to display a leaderboard ad the way www.okcupid.com has setup.
I found this question helpful (http://stackoverflow.com/questions/3303173/position-element-fixed-vertically-absolute-horizontally) but it stays fixed. I would prefer it to scroll with the page until it reaches the top and then be fixed. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你会使用 JavaScript。
该元素将在页面上正常流动,并且当
document.body.scrollTop
大于元素的y
位置时,为其指定position:fixed.
You would use JavaScript.
The element will have normal flow on your page, and when the
document.body.scrollTop
is larger than the element'sy
position, give itposition: fixed
.