cssgrace icon indicating copy to clipboard operation
cssgrace copied to clipboard

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

Open yisibl opened this issue 10 years ago • 0 comments

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;
}

yisibl avatar Apr 17 '15 15:04 yisibl