Slide 31
Slide 31 text
Spriteアニメーション
.heart.is-active {
overflow: hidden;
width: 100px;
height: 100px;
background: url(../sprites.png) 0 0 no-repeat;
animation: sprite-animation 1.2s steps(28, start);
}
@keyframes sprite-animation {
0% { background-position: 0 0; }
100% { background-position: -2800px 0; }
}