我在用
@include keyframes(small) {
0% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.small {
@include animation(small 1s infinite);
}
Rails 给了我以下错误:
Sass::SyntaxError at /
Undefined mixin 'keyframes'. (or 'animation')
我正在使用最新的 SASS 和 compass --pre (alpha),它应该支持动画。