cssdream / cssgrace

从今天起,写简单优雅面向未来的 CSS。From now on,writing brief,elegant,future-oriented CSS.
MIT License
593 stars 63 forks source link

部分浏览器不支持 animation-play-state 属性在 animation 中缩写 #19

Open yisibl opened 9 years ago

yisibl commented 9 years ago

input:

.foo {
  animation: foo 1s 2s infinite linear alternate both paused;
}

Will out:

.foo {
  animation: foo 1s 2s infinite linear alternate both;
  animation-play-state: paused;
}