Masonryを既存の変更されたWordpressサイトに統合しようとしています。私はもともとスクリプトを$(document).readyとして作成しましたが、非常に一般的なタイミングの問題が発生し、画像が重複するため、$(window).loadとして書き直しました。画像は標準の単一列レイアウトで読み込まれるようになり、Masonryは読み込まれません。さまざまな方法で注文を書いてみましたが、まだ進展が見られません。画像ごとにサイズが異なるため、jQueryに認識すべき高さを簡単に伝えることはできません。
*元の問題は重複する画像が読み込まれたページであるためタイミングの問題であると確信していますが、別のページをクリックしてから戻ると、Masonryレイアウトが完全に再読み込みされます。
脚本
jQuery(function($){
// Grid JS
/*
$(document).bind('keydown', 'Alt+Shift+g', function(){
$("div#container").toggleClass("grid");
});
*/
$('#linky').masonry({
singleMode: true,
itemSelector: '.boxy'
});
$('.boxy').hover(function() {
$(this).addClass('boxy-hover');
}, function() {
$(this).removeClass('boxy-hover');
});
});
HTML
<div id="linky">
<?php
$linksPosts = new WP_Query();
$linksPosts->query('showposts=15&cat=-7');
?>
<?php while ($linksPosts->have_posts()) : $linksPosts->the_post(); ?>
<div class="boxy">
<div class="read">
<a href="<?php if(get_post_meta($post->ID, "url", true)) echo get_post_meta($post->ID, "url", true); else the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php endwhile; ?>
</div>
CSS
#linky {
width: 1008px;
height: 100%;
}
#linky .boxy {
width: 306px;
height: auto;
padding: 0 15px 15px 0;
margin-left: 15px;
}
.read {
height: auto;
}
.read img{
max-width: 306px;
height: auto;
}
助けていただければ幸いです、ありがとう!