我正在尝试在wordpress中创建一个缩略图网格,这是我设法做到的。然后,当用户将鼠标悬停在图像上时,我希望它变为半透明颜色,并在下方显示帖子标题。我想我已经开始使用代码,但目前悬停在图像下方而不是缩略图的顶部。我想知道是否有人可以帮我这个?我认为这是问题的CSS。我尝试了位置:绝对但只是在一个地方粘在网格的顶部。
<div id="gridContainer">
<?php
$c = 1; //init counter
$bpr = 3; //boxes per row
if(have_posts()) :
while(have_posts()) :
the_post();
?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="postImage">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('grid-post-image'); ?></a>
</div>
<div class="hover">
<h1 class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
</div>
</div>
<?php
if($c == $bpr) :
?>
<div class="clr"></div>
<?php
$c = 0;
endif;
?>
<?php
$c++;
endwhile;
endif;
?>
<div class="clr"></div>
</div>
这是CSS,我认为需要改变。
.post {
float: left;
width: 275px;
}
.clr {
clear:both;
}
.hover {
width: 275px;
height: 185px;
top: 0;
z-index: 1;
background: #fff;
opacity:0;
}
.hover:hover{
opacity:0.9;
}
答案 0 :(得分:1)
<style>
.postImage{position:relative;}
.postImage>a{position:absolute; top:0; left:0; z-index:0;}
.postImage>h1{display:none; position:absolute; top:50%; left:0; z-index:1;}
.postImage:hover img{opacity:0.5;}
.postImage:hover h1{display:block;}
</style>
将两个元素(图像和h1)放在同一个div中
<div class="postImage">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('grid-post-image'); ?></a>
<h1 class="title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
</div>