gpt4 book ai didi

css - 给伪元素添加类

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

所以我使用伪元素来使用自定义复选标记 SVG,如下所示:

.thing:before {
content: " ";
background: $tickMarkURL;
background-size: 1.5em;
background-size: contain;
width: 1.2em;
height: 1.2em;
display: inline-block;
}

(注意:这实际上使用了 SCSS,所以这就是 $variables 的原因。)

我想使用 Animate.css 将此复选标记设置为动画。但是,Animate.css 使用类向元素添加动画。我不认为这个伪元素是可能的(我认为)。还有其他方法吗?

最佳答案

您可以在animate.css 文件中搜索animation 并将其添加到:before scss >

.thing:before {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}

关于css - 给伪元素添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37322824/

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