我已经为上述查询完成了完整的垃圾箱。这是演示链接...
演示: http ://codebins.com/bin/4ldqp77
HTML
<div id="panel">
<a href="javascript:void(0);">
Link-1
</a>
<a href="javascript:void(0);">
Link-2
</a>
<a href="javascript:void(0);">
Link-3
</a>
<a href="javascript:void(0);">
Link-4
</a>
<h4>
hi there...Header 1
</h4>
<h4>
hi there...Header 2
</h4>
<h4>
hi there...Header 3
</h4>
<h4>
hi there...Header 4
</h4>
</div>
jQuery
$(function() {
$("h4").fadeOut();
$('a').hover(function() {
$("h4:eq(" + $(this).index() + ")").addClass('hover').fadeIn(300);
}, function() {
$("h4:eq(" + $(this).index() + ")").removeClass('hover').fadeOut(300);
});
});
CSS
a{
display:inline-block;
margin:10px;
border:1px solid #000;
background:#3A3A3A;
color:#fff;
text-decoration:none;
padding:5px;
border-radius: 5px;
}
a:hover{
background:#9C9C9C;
text-decoration:underline;
color:#262626;
}
h4{
display:block;
border:1px solid #4455bd;
margin-left:10px;
width:300px;
padding:2px;
background:#a3c4fd;
}
h4.hover{
background:#ffdf88;
}
演示: http ://codebins.com/bin/4ldqp77
如果您想在不使用fadeOut() 的情况下检查效果,请在演示链接上检查jQuery 更改,如下所示。
演示: http ://codebins.com/bin/4ldqp77/2