Created
February 8, 2018 22:12
-
-
Save cossssmin/0069d72bdb75f1191f1ec82e52d5b0d6 to your computer and use it in GitHub Desktop.
Heart like exploding animation
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
.heart { | |
width: 100px; | |
height: 100px; | |
position: absolute; | |
left: 50%; | |
top: 50%; | |
transform: translate(-50%, -50%); | |
background: url(https://cssanimation.rocks/images/posts/steps/heart.png) no-repeat; | |
background-position: 0 0; | |
cursor: pointer; | |
} | |
.heart.active { | |
animation: fave-heart 1s steps(28); | |
background-position: -2800px 0; | |
transition: background 1s steps(28); | |
cursor: default; | |
} | |
@keyframes fave-heart { | |
0% { | |
background-position: 0 0; | |
} | |
100% { | |
background-position: -2800px 0; | |
} | |
} |
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
<div class="heart" onclick="javascript:this.classList.toggle('active')"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment