gpt4 book ai didi

jquery - 按需使用 CSS3 旋转元素

转载 作者:行者123 更新时间:2023-11-28 15:33:27 24 4
gpt4 key购买 nike

我定义了这个关键帧:

@-moz-keyframes rotate{
0%{
-moz-transform: rotate(0deg);
}
100%{
-moz-transform: rotate(359deg);
}
}

并应用于类名:

.rotate{
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-moz-animation-name: rotate;
}

并按需将类添加到元素中:

$('a').click(function(){ $(this).addClass('rotate'); });   /* and the class is applied */

但是元素不会旋转;我做错了什么?

请注意:我只在 firefox 中进行测试,这就是为什么我只使用 -moz- 供应商前缀

最佳答案

添加持续时间:

.rotate{
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-duration: 1s;
}

持续时间定义了每次旋转需要多长时间。如果你不设置一个,the default is zero .

关于jquery - 按需使用 CSS3 旋转元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17550254/

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