Skip to content

Instantly share code, notes, and snippets.

@cossssmin
Created February 8, 2018 22:12
Show Gist options
  • Save cossssmin/0069d72bdb75f1191f1ec82e52d5b0d6 to your computer and use it in GitHub Desktop.
Save cossssmin/0069d72bdb75f1191f1ec82e52d5b0d6 to your computer and use it in GitHub Desktop.
Heart like exploding animation
.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;
}
}
<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