gpt4 book ai didi

jquery - 以动画速度淡出/淡入

转载 作者:行者123 更新时间:2023-12-01 06:22:32 25 4
gpt4 key购买 nike

我正在处理一些事情,需要点击一些东西来淡出,做一些事情然后淡入。

我找到了这段代码,但我不知道如何以毫秒为单位计算时间。

$(this).animate({
opacity:'0'
}, function(){
//Do something
$(this).animate({
opacity:'1'
});
});

最佳答案

使用 fadeOutfadeIn jQuery 函数并传递毫秒数作为第一个参数:

$(this).fadeOut(500, function(){
//Do something
$(this).fadeIn(700);
});

默认时间为400

...或者如果您确实想使用 animate() 则传递 duration option :

$(this).animate({opacity: 0, duration: 500 });

请注意,this 可以由任何 jQuery 选择器(例如 ".class""#id")。

引用:

.fadeOut( [duration ] [, complete ] )

duration (default: 400)

Type: Number or String A string or number determining how long the animation will run.


complete Type: Function()

A function to call once the animation is complete.

Fade out | Fade in

关于jquery - 以动画速度淡出/淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19406191/

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