¿Cómo reproducir la animación exactamente dos veces usando CSS?

El enfoque de este artículo es reproducir la animación exactamente dos veces usando la propiedad animation-iteration-count en CSS. Se utiliza para especificar el número de veces que se repetirá la animación. Puede especificar como infinito para repetir la animación indefinidamente.  

Sintaxis:

animation-iteration-count: number | infinite | initial | inherit; 

Ejemplo: el siguiente código se usa para cambiar el color de fondo del elemento <h2> de rojo a azul. 

HTML

<!DOCTYPE html> 
<html>
  
<head> 
    <style> 
        .geeks { 
            font-size: 40px; 
            text-align:center; 
            font-weight:bold; 
            color:#090; 
            padding-bottom:5px; 
            font-family:Times New Roman; 
        } 
          
        .geeks1 { 
            font-size:17px; 
            font-weight:bold; 
            text-align:center; 
            font-family:Times New Roman; 
        } 
          
        #one { 
            animation-name: example; 
            animation-duration: 2s; 
            /* Animation will be repeated twice */ 
            animation-iteration-count: 2; 
        } 
          
        @keyframes example { 
            from { 
                background-color: red; 
            } 
            to { 
                background-color: blue 
            } 
        } 
    </style> 
</head> 
  
<body> 
    <div class = "geeks"> 
        GeeksforGeeks 
    </div> 
      
    <div class = "geeks1"> 
        A computer science portal for geeks 
    </div> 
      
    <!-- Animation of the text inside the 
        h2 tag below will be repeated twice only -->
    <h2 id="one"> 
        How to play the animation 
        two times using CSS? 
    </h2> 
</body> 
  
</html>

Producción:

Navegadores compatibles:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *