Created
June 22, 2020 07:52
-
-
Save ivo-ivanov/bf7257e06f2a4767b62ec184ff7f459b to your computer and use it in GitHub Desktop.
Heartbeat css animation. #css #animations
This file contains 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
.heartbeat { | |
animation: heartbeat 3s infinite; | |
} | |
@keyframes heartbeat { | |
0% { | |
transform: scale(1); | |
} | |
20% { | |
transform: scale(1.1); | |
} | |
40% { | |
transform: scale(1); | |
} | |
60% { | |
transform: scale(1.1); | |
} | |
80% { | |
transform: scale(1); | |
} | |
100% { | |
transform: scale(1); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment