同位素定位后找到目标位置
我在新网站上使用 David Desandros Isotope,但现在看来我无法使用 jquery 找到每个元素的位置。具体来说,我试图在悬停时附加一个工具提示,但通常我想知道如何在同位素格式化每个锚点后获取它们的位置()。
截至目前,每个元素都为 left、margin-left、position().left 以及我能想到的所有其他定位属性显示“0”。
I'm using David Desandros Isotope for a new site, but now it seems I'm unable to find each elements position using jquery. Specifically I'm trying to attach a tooltip on hover, but generally I'd like to know how to get the position() of each anchor after Isotope has formatted them.
As of now each element displays a '0' for left, margin-left, position().left, and every other positioning property I could think of.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅同位素文档了解 itemPositionDataEnabled
See Isotope docs for itemPositionDataEnabled
嘿,在 Firebug 中查看 Isotope's demo 之一的源代码后,我发现位置是通过以下方式计算的:
我
不确定其他浏览器(例如 IE)使用什么,但您应该能够通过这种方式访问它们的位置。
Hey, after viewing the the source code in one of Isotope's demos in Firebug, I found that the position is being calculated via:
and
I am not sure what is being used for other browsers such as IE, but you should be able to access their position that way.