Skip to content

Instantly share code, notes, and snippets.

@huyb1991
Created June 12, 2018 15:14
Show Gist options
  • Save huyb1991/31b3afe39faa5aa82be0ca9f2bf9cedd to your computer and use it in GitHub Desktop.
Save huyb1991/31b3afe39faa5aa82be0ca9f2bf9cedd to your computer and use it in GitHub Desktop.
/** =================
* Heart beating effect
* HTML: <div class="heartbeat">❤︎</div> // Note, if use span, have to set display: inline-block
* ================= */
.heartbeat {
color: #e00;
animation: beat .5s infinite alternate;
}
/* 1st keyframes: https://jsfiddle.net/qLfg2mrd/ */
@keyframes heartbeat {
0% {
transform: scale(.75);
}
50% {
transform: scale(1);
}
100% {
transform: scale(.75);
}
}
/* 2nd keyframes: https://codepen.io/fivera/pen/rzepn */
@keyframes beat{
to { transform: scale(1.2); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment