iview/src/styles/mixins/loading.less
梁灏 4b05d84ea2 Modify the directory structure
Modify the directory structure
2016-10-28 10:09:07 +08:00

10 lines
No EOL
232 B
Text

// Loading for loop
.ivu-load-loop{
.animation(ani-load-loop 1s linear infinite);
}
@keyframes ani-load-loop {
from { transform: rotate(0deg);}
50% { transform: rotate(180deg);}
to { transform: rotate(360deg);}
}