我有 div 中的图像和段落,当您滚动标题时,我希望该段落显示,此代码适用于我的其他网站,但由于某种原因在这里不起作用
谁能告诉我我做错了什么
$(document).ready(function() {
$('.post-band h2').hover(function(){
$(".entry p",this).fadeTo("fast", 1);
//$(".entry p",this).slideDown();
},
function(){
$(".entry p",this).fadeTo("fast", 0);
// $(".entry p",this).slideUp();
});
});
<div class="post-band" id="post-67">
<h2>Dale Rodman</h2>
<div class="band-image">
<img width="300" height="250" src="http://localhost/wp-content/uploads/2012/02/dale1.jpg" class="attachment-post-thumbnail wp-post-image" alt="dale" title="dale" /></div>
<div class="entry">
<p>Dale has been passionate about music ever since he stopped being passionate about something else, when he puts his mind to something there is not stopping this machine, playing guitar since he was little his ability to absorb different styles has help to create a style like non other.</p>
<h3>Acoustic Guitar, Vocals</h3>
</div>
</div>