我无法让循环与 jquery Isotope 模块在经典的砌体风格布局中对齐。
所有浏览器都在控制台中正常加载脚本,但属性根本不起作用。.item 类 div 元素的对齐方式都在左侧并水平堆叠。
Wordpress 是否有某种继承阻止它工作?我在没有其他插件的 wordpress 的默认 TwentyTwelve 主题上尝试这个,但它位于 positin:fixed; div 将其包装到页面的下 50%。
<script type="text/javascript" src="http://<?php echo $_SERVER[HTTP_HOST]; ?>js/jquery.isotope.js">
$(document).ready(function(){
$('#container').isotope({
$container.isotope({
itemSelector:'.item'
});
masonry: {
columnWidth: 20
};
});
</script>
其次是对 html 的调用:
<div id="container" >
<div class="item">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if (has_post_thumbnail()) {
the_post_thumbnail('thumbnail');
}?>
<h2><a href="<?php the_permalink() ?>" rel="<?php the_ID(); ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<?php endwhile; endif; ?>
</div>
</div>
有了这些适用的 CSS 属性,我认为这不应该是问题......
#container {
position:relative;
}
.item {
width:50px;
height:auto;
border:1px;
}
它现在所在位置的一个活生生的例子在这里:justingaskin.com