gpt4 book ai didi

jquery - 使用 JQuery 为附加属性添加 CSS 的正确语法

转载 作者:太空宇宙 更新时间:2023-11-04 01:37:27 25 4
gpt4 key购买 nike

基本上我想在页面加载时使用 JQuery 来操作 CSS。

我想添加这个 CSS:

animation: drawcircle 1.5s 2

我如何分解它以通过 Jquery CSS 附加?

.css ("animation", "Drawcircle 1.5s 2")?

最佳答案

根据您的需要,有两种方法可以使用类切换或手动。

// The class toggle style
// JS
element.classList.add("animate"); // to start
element.classList.remove("animate"); // to stop

// css
thelement.animate {
animation: drawcircle 1.5s 2;
}

// jQuery
$(element).addClass("animate"); // to start
$(element).removeClass("animate"); // to stop

// css
thelement.animate {
animation: drawcircle 1.5s 2;
}

// the manual style
// JS
element.style.animation = "drawcircle 1.5s 2";

// jQuery
$(element).css("animation", "spin 1.5s infinite");

希望对你有帮助

关于jquery - 使用 JQuery 为附加属性添加 CSS 的正确语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45949754/

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