“崩溃”位置:使用jquery固定元素
我正在尝试实现徽标在此页面中的效果,它固定在顶部页面,但向下滚动时,只有一部分可见,而不是整个元素。
我发现很多 jquery 插件可以将元素的顶部保持在页面顶部,但没有一个插件可以让我自定义元素的高度。我的 JavaScript 无法从头开始编写代码。有人对可能有用的插件有什么建议吗?
I'm trying to implement the effect the logo has in this page, where it is fixed on the top of the page, but when scrolling down, only a part of it remains visible, not the whole element.
I have found plenty of jquery plugins that will keep the top of an element at the top of the page, but none that will let me customize how high the element will stay. My javascript is not up to coding something from scratch. Does anyone have any suggestions for plugins that might be useful?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要为此使用插件。 CSS 可以保持徽标固定,并且一旦用户开始滚动页面,您就可以使用 JavaScript 更改元素的显示。
假设您的徽标具有徽标的 ID,则 CSS 将为:
由于您似乎正在使用 jQuery,因此您可以执行以下操作:
You shouldn't need a plugin for this. CSS can keep the logo fixed and you can use JavaScript to change the display of the element once the user begins to scroll the page.
Assuming that your logo has the ID of logo, the CSS would be:
Since it appears you're using jQuery, you can do something like this: