在固定元素中添加此小部件 - 位置错误?
我使用 addthis 作为垂直工具箱,弹出窗口将在悬停在 fixed 元素中时显示。 但是当滚动时,弹出窗口会显示在其他地方。我尝试使用顶部和左侧偏移的配置,但没有用。这个有什么解决办法吗???
DEMO在这里----> http://jsfiddle.net/vaakash/QzjxR/1/embedded/result/
I am using addthis as a vertical toolbox with the popup to be displayed on hover in a fixed element.
But when scrolling, the popup is displayed somewhere else. I tried using configs of offset top and left, but there were of no use. Is there any solution for this ???
DEMO here ----> http://jsfiddle.net/vaakash/QzjxR/1/embedded/result/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我尝试使用 jQuery 来使用代码,并且相当满足我的需求。所以。在这里,我使用“mousemove”事件来定位弹出窗口,它确实有效。
I tried using the code using jQuery and fairly satisfied my needs. So. here i used the on "mousemove" event to position the popup and it did worked.
据 AddThis 人员称,显然没有解决办法。
因此,将
更改为
http://www.addthis.com/forum/viewtopic.php?f=5&t=24157
Apparently there is no fix, according to the AddThis people.
So change
<a class="addthis_button_compact"></a>
to<a class="addthis_button_expanded"></a>
http://www.addthis.com/forum/viewtopic.php?f=5&t=24157
我遇到了类似的情况,我有一个 div 根据滚动位置动态地从正常位置更改为固定位置(它是页面中间的一个粘性菜单)。
最后我用以下代码修复了它:
请参阅 AddThis 菜单偏移< /a> 获取有关
addthis_config
参数的帮助。I ran into a similar situation where I had a div that dynamicly changed from normal to fixed positioning based on the scroll position (it was a sticky menu halfway on the page).
In the end I fixed it with this code:
See AddThis menu offset for help on the
addthis_config
parameter.