$('.file a').live('mouseenter', function() {
$('#download').stop(true, true).fadeIn('fast');
}).live('mouseleave', function() {
$('#download').stop(true, true).fadeOut('fast');
});
我希望mouseenter
函數的stop()
和延遲1秒。 因此,如果我將鼠標懸停在#download
上,fadeIn
應該在1秒的延遲後開始。如果我同時將鼠標移出fadeIn
不應啓動。找我?延遲()或用stop()超時?
我真的不知道該怎麼做,有什麼想法?
@ user239831 - 你對此有一個突出的問題嗎? – 2010-11-12 13:03:26