CSS: animation-play-state

The animation-play-state property controls whether a CSS animation is running or paused.

What you will learn

Pause on hover

.banner {
  animation: slide 4s linear infinite;
}

.banner:hover,
.banner:focus-within {
  animation-play-state: paused;
}

The default is running. A paused animation keeps its current position until it runs again.

Common mistakes