使用此插件实现同位素样式布局: http: //mintthemes.com/plugins/isotope-for-wordpress/
在初始加载时,它都位于左侧列中并且是重叠的。只要我单击其中一个过滤选项,它就可以正常工作。有谁知道如何修复初始加载布局?任何帮助,将不胜感激。
http://www.bigideaadv.com/big_idea_v2/posts/
这是JS代码:
jQuery(window).ready(function($) {
//isotope
//$(window).load(function() {
$('.moveplugins_isotopes_container').isotope({
// options
itemSelector : '.hentry',
layoutMode : 'masonry'
});
//});
// filter items when filter link is clicked
$('.isotopenav').change(function(){
var selector = $(this).attr('value');
$('.moveplugins_isotopes_container').isotope({ filter: selector });
return false;
});
// filter items when filter link is clicked
$('.isotopenav a').click(function(){
var selector = $(this).attr('valuemint');
$('.moveplugins_isotopes_container').isotope({ filter: selector });
return false;
});
});