fix(fe/css): add rotate style
This commit is contained in:
parent
af87abff92
commit
e39d3b88e0
1 changed files with 22 additions and 0 deletions
|
@ -502,3 +502,25 @@
|
|||
.fix {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.anm-rotate {
|
||||
animation: trm-rotate 1s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes trm-rotate {
|
||||
20% {
|
||||
transform: rotate(72deg);
|
||||
}
|
||||
40% {
|
||||
transform: rotate(144deg);
|
||||
}
|
||||
60% {
|
||||
transform: rotate(216deg);
|
||||
}
|
||||
80% {
|
||||
transform: rotate(288deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue