这是因为动画命令的排队性质,在您的情况下,您需要强制 jQuery 在显示/隐藏元素之前完成所有先前排队的动画。您可以使用.stop()来执行此操作。
此外,您的解决方案看起来很复杂,我也做了一些 dom 更改以使其简单
<table>
<tr>
<td>
<img src="http://placehold.it/150x150" id="image1" alt="description" width="150px" class="content-img" data-target="#content1" />
</td>
<td>
<img src="http://placehold.it/150x150" id="image2" alt="description" width="150px" class="content-img" data-target="#content2" />
</td>
<td>
<img src="http://placehold.it/150x150" id="image3" alt="description" width="150px" class="content-img" data-target="#content3" />
</td>
</tr>
<tr>
<td colspan="3" style="height:100px">
<div id="default">
<h1>default</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div id="content1">
<h1>content 1</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div id="content2">
<h1>content 2</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div id="content3">
<h1>content 3</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</td>
</tr>
</table>
然后
//initial
var timer = 200;
jQuery(function ($) {
var inside = false;
$("#content1, #content2, #content3").hide();
$(".content-img").hover(function () {
inside = true;
var $target = $($(this).data('target'));
$("#default").stop(true, true).hide(timer, function () {
if (inside) {
$target.stop(true, true).show(timer);
}
});
}, function () {
inside = false;
$($(this).data('target')).stop(true, true).hide(timer, function () {
if (!inside) {
$("#default").stop(true, true).show(timer);
}
});
});
});
演示:小提琴