CSS - Animation-iteration-count



The CSS attribute animation-iteration-count specifies how many cycles an animation sequence should run through before it comes to a halt.

Using the shorthand property animation is a convenient way to define all animation-related properties at the same time.

The animation-iteration-count property accepts multiple values separated by commas.

Possible values

  • infinite - The animation will continue indefinitely without stopping.

  • <number> - By default, the animation is repeated once, which is defined by the animation-iteration-count property. You can specify non-integer values such as 0.5 to play a partial section of animation cycle. Negative values are not valid for this property.

Syntax

animation-iteration-count = <single-animation-iteration-count>#  
<single-animation-iteration-count> = infinite | <number [0,∞]>  

Applies to

All the HTML elements, ::before and ::after pseudo-elements.

Examples

In this example, the property "animation-iteration-count" is set to "4", which defines the number of repetitions of the animation sequence.

This property specifies the number of iterations the animation runs through before it is stopped.

In this example, the box element moves vertically up and down four times based on the specified iteration count of the animation.

<html>
<head>
<style>
   body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background-color: #f0f0f0;
   }
   .box {
      width: 150px;
      height: 150px;
      font-size: 20px;
      background-color: #3498db;
      animation-name: slide;
      animation-duration: 2s;
      animation-iteration-count: 4; /* Change this value to set the iteration count */
   }
   @keyframes slide {
      0% {
      transform: translateY(0);
      }
      50% {
      transform: translateY(100px);
      }
      100% {
      transform: translateY(0);
      }
   }
</style>
</head>
<body>
<div class="box">Animation Iteration Count</div>
</body>
</html>
Advertisements