我处于这种情况,我希望在我的网站上有一个默认文本显示,当悬停在三个不同的图像上时,默认文本应该更改为三个不同的文本。
我做到了这一点,你可以在我的小提琴中看到 - 但如果我快速将鼠标移动到所有三个图像上,那么并非所有文本都会正确消失。我该如何实现这一目标?
我的图片JavaScript代码:
$().ready(function () {
$("#image1").hover(
function () {
$("#default").hide(timer,
function () {
$("#content1").show(timer,
function () {})
});
},
function () {
$("#content1").hide(timer, function () {
$("#default").show(timer,
function () {});
});
});
});
PS。如果仅使用HTML和CSS就可以实现这一点 - 那也没关系。
我的jsfiddle:http://jsfiddle.net/T4BCx/4/
答案 0 :(得分:4)
由于动画命令的排队特性,在您的情况下,您需要强制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);
}
});
});
});
演示:Fiddle
答案 1 :(得分:1)
我试过这样的
$("img").hover(function () {
var value = $(this).attr("id").substr($(this).attr("id").length-1);
$('div[id="default"]').find('h1').text("Content" + value);
$('div[id="default"]').find('p').text("Content of Image" + value);
});
$("img").mouseout(function(){
$('div[id="default"]').find('h1').text("Default");
$('div[id="default"]').find('p').text("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")
})