使用css关键帧的xstyle问题dojo

时间:2016-02-15 14:11:02

标签: css css3 dojo

我在dojo项目中使用xstyle,当尝试使用CSS 3向div添加一些动画时:

@keyframes loadingSpinner {
    from { transform: rotate(0deg)   }
    to   { transform: rotate(360deg) }
}

xstyle输出(使用xstyle doj构建插件后):

@keyframes loadingSpinner from {
    transform:rotate(0deg);
}

@keyframes loadingSpinner to {
    transform:rotate(360deg);
}

不能使动画发挥作用:

我想知道:

  • 如何解决这个问题(也许我应该重写css suing xstyle过渡)?

  • 我可以在构建过程中忽略此代码吗?

  • 有什么解决方法吗?

相关:https://github.com/kriszyp/xstyle/issues/51

0 个答案:

没有答案