<div class="animation-sample"></div>
.animation-sample {
margin: 80px auto 0;
width: 100px;
height: 100px;
animation-name: boxAnimation;
animation-duration: 4s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes boxAnimation {
0% {
background-color: #ea4335;
}
50% {
background-color: #3381ca;
border-radius: 50%;
}
100% {
background-color: #25d660;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.