见http://jonesonter.notomato.com.au/。
当您将鼠标悬停在位于一堆图像上的一些列表元素上时,我编写了一个简单的淡入淡出效果,这些图像都绝对位于彼此之上。
$("#homeNav li").hover(function(){
//make a variable and assign the hovered id to it
var elid = $(this).attr('id');
//hide the image currently there
$("div#homeImages div").hide();
//fade in the image with the same id as the selected buttom
$("div#homeImages div#" + elid + "").fadeIn("slow");
});
但是它在 Internet Explorer 中不起作用。
我试过四处寻找,但找不到一种简单的褪色技术可以让我;有一堆图像放置一组控件(在本例中为 <li> 元素),当您将鼠标悬停在特定控件上时,其中一个图像淡入,其他应该全部隐藏,当前一个应该淡出。
IE 似乎总是有错误并且不能正确淡出。有谁知道我哪里出错了?