Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/10/2015, 11:23
Avatar de ceaped
ceaped
 
Fecha de Ingreso: febrero-2004
Mensajes: 2.185
Antigüedad: 20 años, 2 meses
Puntos: 9
Respuesta: Animación con .css no me funciona en Safari y IE

Hice algunos cambios y ya me funciona en Safari pero en IE no:

Código CSS:
Ver original
  1. #cajon_1  {
  2.     width: 111px;
  3.     height: 480px;
  4.     float: right;
  5.  
  6.     background-image: url(../images/cajon.png);
  7.     background-position: 0 0;
  8.     background-repeat: no-repeat;
  9.    
  10.     -webkit-animation: cajon_1 4s;
  11.     animation: cajon_1 4s;  
  12.     }

Código CSS:
Ver original
  1. @-webkit-keyframes cajon_1 {
  2.            
  3. from {
  4.     width: 111px;
  5.     height: 0px;    
  6.     opacity: 0;
  7.     }
  8.    
  9. to {    
  10.     width: 111px;
  11.     height: 480px;
  12.     opacity: 1;
  13.     }
  14.    
  15. }

Código CSS:
Ver original
  1. @-moz-keyframes cajon_1 {            
  2. from {
  3.     width: 111px;
  4.     height: 0px;    
  5.     opacity: 0;
  6.     }
  7.    
  8. to {
  9.     width: 111px;
  10.     height: 480px;
  11.     opacity: 1;    
  12.     }    
  13. }

¿Cómo hago para que funciones en IE?

Gracias por su ayuda
__________________
Diseñador Gráfico publicitario