我有一個小的jQuery動畫漸漸消逝在鏈路衰落動畫的: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的不透明度值)。我能做什麼?
謝謝,埃裏克