Font-Awesome/scss/_animated.scss

20 lines
299 B
SCSS
Raw Normal View History

// Spinning Icons
// --------------------------
2013-05-16 15:19:04 +08:00
.#{$fa-css-prefix}-spin {
2015-07-04 19:59:40 +08:00
animation: fa-spin 2s infinite linear;
2013-06-12 22:51:29 +08:00
}
2013-06-15 04:57:00 +08:00
.#{$fa-css-prefix}-pulse {
2015-07-04 19:59:40 +08:00
animation: fa-spin 1s infinite steps(8);
2013-05-16 15:19:04 +08:00
}
@keyframes fa-spin {
2014-04-10 21:55:00 +08:00
0% {
2015-07-04 19:59:40 +08:00
transform: rotate(0deg);
2014-04-10 21:55:00 +08:00
}
100% {
2015-07-04 19:59:40 +08:00
transform: rotate(359deg);
2014-04-10 21:55:00 +08:00
}
2013-05-16 15:19:04 +08:00
}