同位素定位后找到目标位置

发布于 2024-11-13 09:32:53 字数 269 浏览 3 评论 0原文

我在新网站上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神爱温柔 2024-11-20 09:32:53

请参阅同位素文档了解 itemPositionDataEnabled

$('#container').isotope({
  itemSelector: '.element',
  itemPositionDataEnabled: true
})
// log position of each item
.find('.element').each(function(){
  var position = $(this).data('isotope-item-position');
  console.log('item position is x: ' + position.x + ', y: ' + position.y  );
});

See Isotope docs for itemPositionDataEnabled

$('#container').isotope({
  itemSelector: '.element',
  itemPositionDataEnabled: true
})
// log position of each item
.find('.element').each(function(){
  var position = $(this).data('isotope-item-position');
  console.log('item position is x: ' + position.x + ', y: ' + position.y  );
});
扛起拖把扫天下 2024-11-20 09:32:53

嘿,在 Firebug 中查看 Isotope's demo 之一的源代码后,我发现位置是通过以下方式计算的:

-moz-transform: translate(#px, #px)

-webkit-transform: translate(#px, #px)

不确定其他浏览器(例如 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:

-moz-transform: translate(#px, #px)

and

-webkit-transform: translate(#px, #px)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文