Created
September 4, 2017 18:14
-
-
Save gastonambrogi/63f9c136b00c29a3b49e26d318d953e1 to your computer and use it in GitHub Desktop.
CSS Heartbeat
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
.ion-heart { | |
-webkit-animation: heartBeat 1.5s infinite ease-in-out; | |
animation: heartBeat 1.5s infinite ease-in-out | |
} | |
@-webkit-keyframes heartBeat { | |
0%, 100% { | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
10% { | |
-webkit-transform: scale(1.3); | |
transform: scale(1.3) | |
} | |
25% { | |
-webkit-transform: scale(1.2); | |
transform: scale(1.2) | |
} | |
35% { | |
-webkit-transform: scale(1.3); | |
transform: scale(1.3) | |
} | |
} | |
@keyframes heartBeat { | |
0%, 100% { | |
-webkit-transform: scale(1); | |
transform: scale(1) | |
} | |
10% { | |
-webkit-transform: scale(1.3); | |
transform: scale(1.3) | |
} | |
25% { | |
-webkit-transform: scale(1.2); | |
transform: scale(1.2) | |
} | |
35% { | |
-webkit-transform: scale(1.3); | |
transform: scale(1.3) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment