gpt4 book ai didi

Jquery 淡出队列

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

我有两个 div。一种是黑色背景,一种是紫色。我使用 jquery 淡出黑色 div 并淡入紫色 div。然而,似乎两者都试图同时发生。

我的问题是如何让紫色 div 在且仅在紫色 div 完全淡出之后淡入。我听说过queue方法,但不太清楚如何使用。

$("div.black").fadeOut();
$("div.purple").fadeIn().queue(); // <-- purple div still trys to fade in
// while black div is fading out.
// I need the purple div to wait
// until that black div has completely faded out.

最佳答案

像这样

$("div.black").fadeOut(function(){
$("div.purple").fadeIn();
});

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

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