当你将鼠标悬停在jQuery中的链接上时,我试图获得很好的淡化效果。
到目前为止,我有:
$('a').hover(
function () {
$(this).animate({ color: '#fff' }, 1000 );
},
function () {
$(this).animate({ color: '#000' }, 1000 );
});
实际上哪个工作正常。但是,想象一下,如果链接是导航,彼此接近。如果您尝试从一个链接悬停到旁边的链接并返回几次。 链接会逐渐消失,如果有动画已经发生,我将如何阻止事件“排队”?
任何建议表示赞赏!
答案 0 :(得分:5)
您正在寻找stop
功能
$('a').hover(
function () {
$(this).stop().animate({ color: '#fff' }, 1000 );
},
function () {
$(this).stop().animate({ color: '#000' }, 1000 );
}
);