I use xstyle in a dojo project when trying to add some animation to a div using CSS 3, for example:
@keyframes loadingSpinner {
from { transform: rotate(0deg) }
to { transform: rotate(360deg) }
}
xstyle output (after use with the xstyle doj build plugin):
@keyframes loadingSpinner from {
transform:rotate(0deg);
}
@keyframes loadingSpinner to {
transform:rotate(360deg);
}
which does not work animation:
I'd like to know:
Related: https://github.com/kriszyp/xstyle/issues/51
source
share