xl-infinite-tree
Version:
A browser-ready tree library that can efficiently display a large amount of data using infinite scrolling.
23 lines (22 loc) • 432 B
text/stylus
//
// http://stackoverflow.com/questions/6410730/webkit-css-endless-rotation-animation-how
//
@-webkit-keyframes rotating /* Safari and Chrome */ {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.rotating {
animation: rotating 2s linear infinite;
}