Animate Smoothly Between Two Background Colors
@keyframes pulse {
0% {
background-color: red;
}
50% {
background-color: blue;
}
100% {
background-color: red;
}
}.square1 {
animation: pulse 2s infinite;
width: 100px;
height: 100px;
}PreviousAdd Fab Icons To Your Site With FontAwesome 5NextApply Multiple Box Shadows To Single Element
Last updated