目前我必须列出所有变体:
@-webkit-keyframes show {
from { background-color: rgba(0, 0, 0, 0); }
to { background-color: rgba(0, 0, 0, 0.8); }
}
@-moz-keyframes show {
from { background-color: rgba(0, 0, 0, 0); }
to { background-color: rgba(0, 0, 0, 0.8); }
}
[…]
你明白了。有什么办法可以写得更短吗?像这样并没有破坏它的东西:
@-webkit-keyframes show, @-moz-keyframes show {}