我有一个带有图像的投资组合网格,每个图像上都有一个 jQuery 切换。
当我单击图像时,它看起来像这样:
我想成为这样:
我不想要我的切换信息,下推我的投资组合图像,也许我知道它为什么会发生,但仍然无法解决它。
HTML:
<div id="blog">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div class="post" id="<?php the_ID(); ?>">
<div class="thumbnail">
<?php the_post_thumbnail( 'mainimg' ); ?>
</div>
<div class="toggleSection">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<h3>Posted in: <span><?php the_category(', ') ?> </span>On: <span><?php the_time('l, F jS, Y') ?></span></h3>
<p><?php the_content(); ?> </p>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
CSS:
#blog {
position: relative;
height: 900px;
width: 905px;
margin: 0 auto;
margin-top: 10px;
clear: both;
}
.thumbnail {
z-index: 0;
float: left;
margin: 4px 3px 0px 3px;
cursor: pointer;
}
.toggleSection {
margin: 0 auto;
clear: both;
display: none;
background-color: pink;
height: 300px;
width: 900px;
}
很多东西都是新手,请帮忙:)