Heart Pounding
by Axelvaisper
HTML
<div class="heart">♥</div>
CSS
/* Pounding heart animation */
@keyframes pound {
to { transform: scale(1.4); }
}
.heart {
display: inline-block;
font-size: 150px;
color: #e00;
animation: pound .5s infinite alternate;
transform-origin: center;
}
body { text-align: center; }