Last active
October 8, 2022 13:33
-
-
Save andresgcarmona/09360c6c74c55d6df30f6630e3c14f15 to your computer and use it in GitHub Desktop.
CSS step animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.hi { | |
width: 50px; | |
height: 72px; | |
background-image: url("http://s.cdpn.io/79/sprite-steps.png"); | |
-webkit-animation: play .8s steps(10) infinite; | |
-moz-animation: play .8s steps(10) infinite; | |
-ms-animation: play .8s steps(10) infinite; | |
-o-animation: play .8s steps(10) infinite; | |
animation: play .8s steps(10) infinite; | |
} | |
@-webkit-keyframes play { | |
from { background-position: 0px; } | |
to { background-position: -500px; } | |
} | |
@-moz-keyframes play { | |
from { background-position: 0px; } | |
to { background-position: -500px; } | |
} | |
@-ms-keyframes play { | |
from { background-position: 0px; } | |
to { background-position: -500px; } | |
} | |
@-o-keyframes play { | |
from { background-position: 0px; } | |
to { background-position: -500px; } | |
} | |
@keyframes play { | |
from { background-position: 0px; } | |
to { background-position: -500px; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment