jQuery 同位素砌体布局动画失败:(
我正在尝试让 jQuery Isotope's 砌体布局在此测试站点上工作:http://make.truliablog.com/test-filters
它似乎对它们进行了正确的排序,但是调整窗口大小和块调整时的动画不起作用。我该如何解决这个问题?
这是相关的 jQuery 代码。
<script>
jQuery(document).ready(function(){
jQuery('#container').isotope({
masonry : {
columnWidth : 50
}
});
// Filter buttons
jQuery('#filters a').click(function(){
var selector = jQuery(this).attr('data-filter');
jQuery('#container').isotope({ filter: selector });
return false;
});
});
</script>
I am trying to get jQuery Isotope's masonry layout to work on this test site: http://make.truliablog.com/test-filters
It appears to be sorting them properly, but the animation when you resize the window and the blocks adjust are not working. How can I fix this problem?
Here is the associated jQuery code.
<script>
jQuery(document).ready(function(){
jQuery('#container').isotope({
masonry : {
columnWidth : 50
}
});
// Filter buttons
jQuery('#filters a').click(function(){
var selector = jQuery(this).attr('data-filter');
jQuery('#container').isotope({ filter: selector });
return false;
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 Isotope 将默认的“animationEngine”设置为“css”。
最短的方法是将“animationEngine”设置为“jquery”(假设您使用的是 jQuery)。
It seems Isotope has the default 'animationEngine' as 'css'.
The shortest way would be to set 'animationEngine' as 'jquery' (assuming you are using jQuery).