I am using
@include keyframes(small) {
0% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.small {
@include animation(small 1s infinite);
}
And rails gives me the following error:
Sass::SyntaxError at /
Undefined mixin 'keyframes'. (or 'animation')
I am using latest SASS and compass --pre (alpha) which is supposed to support animations.
Try using the following combination of gems in your GemFile:
And then make sure you have the following lines at the top of your scss file: