页面滚动上的浮动 Twitter 图标
您能告诉我这个网站是如何做到这一点的吗?
有一只 Twitter 小鸟漂浮在网页周围(我猜不是随机的) 当我向下滚动时,小鸟跟着我飞来飞去:)
有插件吗?
更新:我刚刚发现它是一个 WordPress 小工具。但是我如何在我的网站(不是博客)上使用它? 无论如何,我还是要看看源代码。
Could you please tell me how this web site managed to do this?
There is a Twitter bird floating all around the web page (Not randomly I guess)
When I scroll down, the bird follows me and flies around :)
Is there a pllug-in for it?
Update: I just found it's a Wordpress gadget. But how can I use it on my web site (Not blog)?
Anyway, I'm gonna look at the source code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个快速的答案是将 div 或元素设置为绝对位置,并为其指定比您希望其浮动的页面其余部分更高的 z-index。然后通过窗口滚动事件上的 JavaScript 来控制它。例如,如果使用 jQuery,您可以使用scrollTop() 并使用偏移量来设置 twitter 浮动小鸟的 y 位置。
类似于:
然后在 Javascript 中
A quick answer is to set a div or element to absolute position and give it a higher z-index than the rest of the page you want it to float over. Then control it via Javascript on a window scroll event. For example, if using jQuery you could use scrollTop() and have an offset to set the y positioning of the twitter floating bird.
Something like:
Then in Javascript