Skip to content

Instantly share code, notes, and snippets.

@greenido
Forked from LeaVerou/dabblet.css
Created December 25, 2012 09:26
Show Gist options
  • Save greenido/4372438 to your computer and use it in GitHub Desktop.
Save greenido/4372438 to your computer and use it in GitHub Desktop.
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
to { transform: scale(1.8); }
}
.heart {
display: inline-block;
font-size: 50px;
color: orange;
animation: pound 1.3s infinite alternate;
transform-origin: center;
}
body { text-align: center; }
<div class="heart">&#x2665;</div>
// alert('Hello world!');
{"view":"split","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