gpt4 book ai didi

Jquery 图像淡出

转载 作者:行者123 更新时间:2023-12-01 07:29:44 25 4
gpt4 key购买 nike

我正在使用这个 jquery 来尝试淡出我的图像并显示下面的内容。它工作完美,除非您将鼠标悬停在它上面多次。然后它就吓坏了,开始一遍又一遍地进出。我能做点什么吗?

$('#contentPosters li').hover(function(){
$(this).find('img').fadeOut();
},
function(){
$(this).find('img').fadeIn();
});

最佳答案

$('#contentPosters li').hover(function(){
$(this).find('img').stop().fadeTo('fast',0);
},
function(){
$(this).find('img').stop().fadeTo('fast',1);
});

使用stop()fadeTo

stop()用于停止当前动画。

fadeTo() 用法是因为当您在 fadeIn/fadeOut 期间停止动画时,不透明度不会重置为 100%,并且随着时间的推移,您的图像将变得不可见。

关于Jquery 图像淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7073368/

25 4 0
文章推荐: javascript - 如何访问 `
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com