Created
July 17, 2014 23:15
-
-
Save konstantindenerz/2afe4dc72bb7f3039797 to your computer and use it in GitHub Desktop.
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
@-webkit-keyframes pulse { | |
from { | |
width: 170px; | |
} | |
59% { | |
margin-left: 0; | |
margin-top: 0; | |
width: 170px; | |
} | |
60% { | |
margin-left: -2px; | |
margin-top: -2px; | |
width: 175px; | |
} | |
65% { | |
margin-left: 0; | |
margin-top: 0; | |
width: 170px; | |
} | |
79% { | |
margin-left: 0; | |
margin-top: 0; | |
width: 170px; | |
} | |
80% { | |
margin-left: -2px; | |
margin-top: -2px; | |
width: 175px; | |
} | |
to { | |
margin-left: 0; | |
margin-top: 0; | |
width: 170px; | |
} | |
} | |
img{ | |
-webkit-animation: pulse 2000ms linear infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment