带同位素的scrollTo插件
我的作品集位于 http://www.visualise.ca/,我现在正在开发新版本运行同位素。它可以在 http://themes.visualise.ca/visualise 上找到。
当我单击将在页面中加载帖子的图像缩略图时,我希望页面使用 jQueryscrollTo 插件和以下代码滚动到该项目(单击的图像缩略图):
$container.delegate( $itemString, 'click', function(){
$(this).toggleClass('large');
$container.isotope('reLayout');
$('html,body').scrollTo(this, 800);
});
但是经过测试,似乎位置项目的 始终是容器的 top:1 left:1 (如果项目没有 1px 边框,则为 0)。另外,当我使用 Firebug 检查项目时,突出显示的蓝线不在项目本身上,而是位于容器的 top:1 left:1 处。
所以我怀疑,由于同位素,所有插件现在都认为所有项目都位于 0,0(1,1 因为我的情况是边距)。
我该怎么做才能正确滚动?
非常感谢您的时间和帮助。
My portfolio is located at http://www.visualise.ca/ and I am now working on a new version running isotope. It is available at http://themes.visualise.ca/visualise.
When I click on an image thumbnail which will load the post within the page I would like the page to scroll to the item (the clicked image thumbnail) using the jQuery scrollTo plugin and the following code:
$container.delegate( $itemString, 'click', function(){
$(this).toggleClass('large');
$container.isotope('reLayout');
$('html,body').scrollTo(this, 800);
});
But after testing, it seems like the position of the item is always top:1 left:1 of the container (this would be 0 if the item didn't have a 1px border). Also when I use Firebug to inspect the item, the highlighted blue line is not on the item itself but located at top:1 left:1 of the container.
So I suspect that because of isotope all the plugins now thinks all the items are located at 0,0 (1,1 because the margins in my case).
What can I do in order to scroll properly?
Many thanks for your time and help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下技术获取项目相对于其容器的正确位置:设置
itemPositionDataEnabled: true
在选项中,并使用.data('isotope-item-position')
获取位置。对于你的代码You can get the proper position of an item, relative to its container, using the following technique: set
itemPositionDataEnabled: true
in the options, and get the position using.data('isotope-item-position')
. For your codeitemPositionDataEnabled
已在 Isotope v2 中删除 并且上述答案将不再有效。这个答案将帮助您使用
通过基本 jQuery 实现相同的结果位置
或偏移
。itemPositionDataEnabled
has been removed in v2 of Isotope and the above answer will no longer work.This answer will help you achieve the same result with basic jQuery using
position
oroffset
.