You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Hello! I found a problem with this plugin. Not sure if I'm doing something wrong, but I followed every step on this page to make animated sprites: http://blog.teamtreehouse.com/css-sprite-sheet-animations-steps
.monster {
width: 190px;
height: 240px;
background: url('monster-sprite.png') left center;
animation: play 0.8s;
} @Keyframes play {
100% { background-position: -1900px; }
}
It was animating when I was using a different SASS compiler in another IDE, but when I used the sass-autocompile for atom, the animation went away. Is there anything I'm supposed to do to make this animation work? Thanks!
The text was updated successfully, but these errors were encountered:
Hello! I found a problem with this plugin. Not sure if I'm doing something wrong, but I followed every step on this page to make animated sprites:
http://blog.teamtreehouse.com/css-sprite-sheet-animations-steps
.monster {
width: 190px;
height: 240px;
background: url('monster-sprite.png') left center;
animation: play 0.8s;
}
@Keyframes play {
100% { background-position: -1900px; }
}
It was animating when I was using a different SASS compiler in another IDE, but when I used the sass-autocompile for atom, the animation went away. Is there anything I'm supposed to do to make this animation work? Thanks!
The text was updated successfully, but these errors were encountered: