gpt4 book ai didi

javascript - 使用 jquery 淡入淡出

转载 作者:太空宇宙 更新时间:2023-11-03 19:53:13 26 4
gpt4 key购买 nike

我现在才刚刚开始学习使用 jQuery,我正在尝试淡入淡出图像。当我将鼠标悬停在图像上时,我想将图像淡化为半不透明。然后,只有在我移开图像鼠标后,图像才会恢复为完全不透明。现在,我正在使用回调函数淡入图像,但它是在淡出发生后立即执行的,而不是在我的鼠标离开图像时执行的。有人知道发生了什么事吗?

这是我的代码:

$(document).ready(function(){
$("img").mouseover(function(event){
$(this).fadeTo("fast", 0.5, function(){
$(this).fadeTo("fast", 1.0)}
);
});
});

最佳答案

试试这个

$(document).ready(function(){
$("img").on('mouseover', function(event){
$(this).fadeTo("fast", 0.5);
}).on('mouseout', function(){
$(this).fadeTo("fast", 1.0)
});
});​

DEMO .

关于javascript - 使用 jquery 淡入淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12311727/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com