Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created April 23, 2012 23:38
Show Gist options
  • Save LeaVerou/2474612 to your computer and use it in GitHub Desktop.
Save LeaVerou/2474612 to your computer and use it in GitHub Desktop.
Starting point for pound animation
/**
* Starting point for pound animation
*/
@keyframes pound {
from { transform:scale(1); }
to { transform:scale(1.2); }
}
img {
display: block;
width: 300px;
height: 300px;
margin: 100px auto 0;
animation: pound .3s infinite;
}
<img src="http://lea.verou.me/css-4d/img/heart.svg" alt="♥" />
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment