嗨,我正在尝试在悬停时显示一个隐藏的 div 以覆盖我的图像,并且我有一个从 wordpress 中的项目帖子动态生成的列表..显然列表类名称都是不同的..
我的选择器会是什么,以便 div 只出现在悬停的列表项上。
<li class="item-<?php the_ID() ?> <?php if(++$count%4==0) echo 'rightmost'?> ">
<div class="image">
<span>
<a href="<?php the_permalink() ?>">
<?php
if(has_post_thumbnail()){
the_post_thumbnail('post-thumb');
}
?>
</a>
</span>
<a href="<?php the_permalink() ?>" class="link">View Details</a>
</div>
<div class="content">
<h2><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h2>
<span class="tags">
<?php
// Fetching the tag names with respect to the post and displaying them
$args = array('orderby' => 'name', 'order' => 'ASC', 'fields' => 'names');
echo implode(wp_get_object_terms( $post->ID, 'tag', $args),', ');
?>
</span>
<p>
<?php
// Using custom excerpt function to fetch the excerpt
folio_excerpt('folio_excerpt_length','folio_excerpt_more');
?>
</p>
</div>
<div class="clear"></div>
</li>
<?php endwhile; ?>
</ul>
<script>
$(document).ready(function() {
$('.item-<?php the_ID() ?>').hover(
function(){
$('#folio li .content').fadeIn();
},
function() {
$("#folio li .content").fadeOut();
});
});
</script>
http://allavitart.yourtrioproject.com/portfolio/ 那是我正在进行的便便工作