gpt4 book ai didi

javascript - 哪个更好 : Jquery. animate() 或 css transitions with setTimeOut

转载 作者:行者123 更新时间:2023-11-30 13:09:24 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Is it better to use jQuery fadeIn or CSS3 animations?
what’s faster? CSS3 transitions or jQuery animations?

我正在尝试制作动画,速度至关重要。我试过两种方法都有效,但我想知道哪种方法更有效。

方法一:使用Jquery.animate()我的代码看起来像:

$("div").animate({opacity: "show"}, 100, "linear", function() {
console.log("Animation Complete");
});

方法 2:将 Css 转换与 setTimeOut 结合使用:这是代码的样子:

$("div").addClass("hidden") //On Page load

然后动画淡入:

setTimeout(function () {
$("div").removeClass('hidden');
}, 100);

Hidden 具有以下样式属性:

.hidden { opacity: 0 !important; }

两者都工作得很好,但我想知道哪个更有效/更好。

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