$(document).ready(function(){
$('#li1').mouseover(function(){
$(".over2").slideDown("slow");
$(".over").hide();
});
$('#li1').mouseout(function(){
$(".over2").slideUp("fast");
$(".over").show();
});
});
これのhtmlはここにあります!!
<li id="li1" class="news_tabs">
<img src="Images/images.jpg" height="290" width="200" />
<div class="over">
<h5>The blackberry Launched in</h5>
</div>
<div id="over2" class="over2">
<p>The total discription The total discription The
total discription The total
discription The total discription </p>
</div>
</li>
<li class="news_tabs"> this is two</li>
<li class="news_tabs">this is three</li>
<li class="news_tabs"> this is four</li>
画像があります。私がやりたいのは、ユーザーが画像にマウスを合わせると、見出しが非表示になり、短い説明が上からスライドし、マウスが外れると、再び見出しが表示され、説明が上にスライドします。しかし、ここでマウスが下にスライドしたディスクリプションの上にあると、マウスが出るまでディスクリプションが上下に何度もスライドします...助けてください
このコードで制御不能に上下にスライドするのを止める方法は?