Skip to content

Instantly share code, notes, and snippets.

@tobaco
Created November 9, 2014 15:43
Show Gist options
  • Save tobaco/cf607886e461701321ea to your computer and use it in GitHub Desktop.
Save tobaco/cf607886e461701321ea to your computer and use it in GitHub Desktop.
Pounding heart animation
/* Pounding heart animation */
@keyframes pound {
0% { opacity: 0;}
20% { opacity: 0.2 }
85% { opacity: 0;}
100% { transform: scale(2); opacity: 0 }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
animation: pound 2.5s infinite cubic-bezier(0.645, 0.045, 0.355, 1.000);
transform-origin: center;
}
body { text-align: center; }
<div class="heart">&#x2665;</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment