gpt4 book ai didi

javascript - 将 Javascript 效果延迟 500 毫秒

转载 作者:行者123 更新时间:2023-11-29 22:33:10 61 4
gpt4 key购买 nike

我想将 slideOutItem 延迟 500 毫秒。无法正常工作。

if(current === idx) {
slideOutItem($menuItems.eq(current), false, 250, 'easeOutQuint', true);
current = -1;
}

最佳答案

像这样

if(current === idx) {
setTimeout(function () {
slideOutItem($menuItems.eq(current), false, 250, 'easeOutQuint', true);
} , 500);
current = -1;
}

关于javascript - 将 Javascript 效果延迟 500 毫秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6208065/

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