MasonryというjQueryが動きません。
-
WP上でなくHTMLとCSSのみで作っていたときはちゃんと動きました。ですが、WP上では動きません
なにぶん初めてサイトを作っているので、基本的なこともわかっておらず、根本的に間違っているかもしれませんが、もしなにかおわかりななる方がおられましたら、アドバイスをお願いします。header.phpのファイルです↓
<?php wp_deregister_script(‘jquery’); ?>
<script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js”></script>
<script type=”text/javascript” src=”js/jquery. masonry. min.js”></script>
<script>
$(function(){
$(‘#masonry’).masonry({
itemSelector: ‘.boite’,
columnWidth: 230,
isAnimated:true,
});
});
</script>
<?php wp_head(); ?>style.cssのファイルです↓
#masonry {
width:80%;
margin:0 auto;
}
.boite {
background: #FFF;
width: 230px;
padding: 10px;
margin: 10px;
float: left;
}about.php(実際のページ)のファイルです↓
<div id=”masonry”>
<div class=”boite”><img src=”<?php bloginfo(‘template_url’); ?>/img/about.jpg” width=”200″ height=”500″ /></div>
<div class=”boite”><img src=”<?php bloginfo(‘template_url’); ?>/img/about.jpg” width=”200″ height=”400″ /></div>
<div class=”boite”><img src=”<?php bloginfo(‘template_url’); ?>/img/about.jpg” width=”200″ height=”200″ /></div>
<div class=”boite”><img src=”<?php bloginfo(‘template_url’); ?>/img/about.jpg” width=”200″ height=”300″ /></div>
<div class=”boite”><img src=”<?php bloginfo(‘template_url’); ?>/img/about.jpg” width=”200″ height=”400″ /></div>
</div>
- トピック「MasonryというjQueryが動きません。」には新たに返信することはできません。