有人可以帮我弄这个吗?我有一个菜单滑块,每次您将鼠标悬停在列表项上时,都会显示一个新图像,问题是:每次显示新图像时它都会加载,然后它遵循我的代码,因此,图像显示,然后它隐藏了,然后它淡入了,但我希望图像在它出现之前就被隐藏起来。
我的代码:
<script type="text/javascript">
$('#image_div').prepend(
$('<img/>',{ }).load(
function(){
$(this).hide().delay(500).fadeIn(1000);
$('#image_div img:first').next().animate({},0,function(){
$(this).remove();
});
}
).attr('src',''+info_elem.find('.info_image').html())
);
</script>