Created
October 30, 2016 19:59
-
-
Save ahallora/99c82fd0b37efffee814d743cbf91c3e to your computer and use it in GitHub Desktop.
PNG Sprite Animation with CSS
This file contains 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
<style type="text/css"> | |
.pngAnimation { | |
background: url(../assets/img/ourdio-sprite-png.png) no-repeat left top; | |
background-size: 2900%; /* 28+1 steps * 100% */ | |
height: 50px; | |
width: 50px; | |
animation: o-burst 1000ms steps(28) infinite; | |
} | |
@keyframes o-burst{ | |
0% { background-position:left } | |
100% { background-position:right } | |
} | |
</style> | |
<div class="pngAnimation"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment