gpt4 book ai didi

css - 简化CSS中的动画

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

我的元素中有如下scss文件

  &.care-loading-icon{
.glyphicon-refresh-animate {
@include care-loading-animation
}

@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}

@-webkit-keyframes spinw {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}

@-moz-keyframes spinm {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
}

我想知道是否有任何方法可以用波旁威士忌来简化它?

最佳答案

看起来像,来自 the documentation您可以使用 mixin keyframes 来简化您的关键帧实现。

像这样

@include keyframes(spin) {
from { @include transform(0deg); }
to { @include transform(360deg); }
}

关于css - 简化CSS中的动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40239961/

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