私は使っている
@include keyframes(small) {
0% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.small {
@include animation(small 1s infinite);
}
そしてレールは私に次のエラーを与えます:
Sass::SyntaxError at /
Undefined mixin 'keyframes'. (or 'animation')
アニメーションをサポートする最新の SASS と compass --pre (alpha) を使用しています。