Ver Mensaje Individual
  #9 (permalink)  
Antiguo 11/07/2013, 18:19
Avatar de pzin
pzin
Moderata 😈
 
Fecha de Ingreso: julio-2002
Ubicación: Islas Canarias
Mensajes: 10.488
Antigüedad: 21 años, 9 meses
Puntos: 2114
Respuesta: animacion css3 en internet explorer 10

Gracias por compartirlo.

Si quieres tener algo más limpio (DRY), podrías usar la misma animación, la misma declaración keyframes, e indicar en cada animación un animation-delay:

Código CSS:
Ver original
  1. #imagen.anim_1 {
  2.    animation: ciclo 10s linear infinite;      
  3. }
  4. #imagen.anim_2 {
  5.    animation: ciclo 10s linear infinite 10s;
  6. }
  7. #imagen.anim_3 {
  8.    animation: ciclo 10s linear infinite 20s;
  9. }
  10. #imagen.anim_4 {
  11.    animation: ciclo 10s linear infinite 30s;
  12. }
  13. #imagen.anim_5 {
  14.    animation: ciclo 10s linear infinite 40s;
  15. }
  16.  
  17. @keyframes ciclo {
  18.    0%  { opacity: 0; }
  19.    20% { opacity: 1; }
  20.    80% { opacity: 1; }
  21.   100% { opacity: 0; }
  22. }