我試圖實現其他解決方案,但沒有運氣...希望有人可以幫助解決我的懸停延遲問題...我只需要添加一個短暫的延遲時間。如何在鼠標移出時添加延遲
在此先感謝!
$('.forward').css({opacity:0, right:0});
$('.hover-area').hover(function() {
$(this).find('.forward').stop()
.animate({right:20}, {queue:false, duration:300, easing:'easeOutCubic'})
.animate({opacity:'0.95'}, {queue:false, duration:400, easing:'easeOutCubic'});
},function() {
$(this).find('.forward').stop()
.animate({right:0}, {queue:false, duration:550, easing:'easeOutSine'})
.animate({opacity:'0'}, {queue:false, duration:300, easing:'easeOutSine'});
});
你看過hoverintent嗎? –
謝謝你的擡頭。我確實看了一眼......它也可以工作,但我希望沒有額外的插件就可以做到。我相信我會最終遷移到它......像許多開發人員正在使用它的接縫 – Taylor
仍然沒有解決方案...看起來我會比我更早使用hoverintent – Taylor