birdpaper-icon
Version:
基于 Remix icon 生成的 Vue3 图标组件库
17 lines (16 loc) • 337 B
CSS
.bp-icon-spin {
display: inline-block;
line-height: 1;
animation: rotating 1s linear infinite;
-webkit-animation: rotating 1s linear infinite;
}
@keyframes rotating {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
to {
transform: rotate(360deg);
-webkit-transform: rotate(365deg);
}
}