Skip to content

Instantly share code, notes, and snippets.

@konstantindenerz
Created July 17, 2014 23:15
Show Gist options
  • Save konstantindenerz/2afe4dc72bb7f3039797 to your computer and use it in GitHub Desktop.
Save konstantindenerz/2afe4dc72bb7f3039797 to your computer and use it in GitHub Desktop.
@-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