我有一个小 jQuery 动画,它在悬停时淡入链接:
$(function() {
$('.delete').hide();
$('#photos img').hover(function() {
$(this).parents('li').children('.delete').fadeIn('fast');
}, function() {
$(this).parents('li').children('.delete').fadeOut('fast');
});
});
但是如果我快速将鼠标移入和移出图像,新动画总是添加到队列中,当我停止时,我可以看到链接跳动一会儿。我尝试使用 .stop(true),但有时淡入效果根本不起作用(或者只是不透明度值小于 1)。我能做些什么?
谢谢,埃里克