gpt4 book ai didi

jQuery 淡出百分比

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

如何将淡出效果设置为仅 20% 或 30% 可见?因为 fadeOut 从 DOM 中删除了我的元素。我想用 fadeOut 和 fadeIn 创建图像动画。

var about = $("#about");
about.mouseenter(function() {
about.fadeOut("fast", function() {
about.attr('src', 'img/about1.png');
about.fadeIn('slow', function() {
});
});
about.mouseout(function () {
about.fadeOut("fast", function () {
about.attr('src', 'img/about.png')
about.fadeIn("slow");
});
});
});

最佳答案

使用 jQuery fadeTo,这样您就可以指定要淡入淡出的不透明度 ( API )

$("#about").fadeTo( "slow" , 0.5);

关于jQuery 淡出百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22508447/

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