我無法獲得循環對齊jquery Isotope模塊的經典砌體樣式佈局。jQuery同位素不應用佈局。繼承問題?
所有瀏覽器都在控制檯中加載腳本,但屬性看起來根本不起作用。 .item class div元素的對齊方式全部位於左側並水平堆疊。
Wordpress是否有某種繼承阻止它的工作?我試圖在默認的TwentyTwelve主題的WordPress的沒有其他插件,但它是在positin:固定; 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
'$ container'定義在哪裏?我也從來沒有使用過'同位素',但它看起來好像你正在調用它兩次。 – 2013-05-03 16:11:55
可能是。我仍然需要處理後端開發JS的問題。現場示例有幫助嗎? – canacast 2013-05-03 16:49:49
一個生動的例子會有所幫助。 – 2013-05-03 16:57:53