Created
June 12, 2018 15:14
-
-
Save huyb1991/31b3afe39faa5aa82be0ca9f2bf9cedd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** ================= | |
* 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