Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/05/2012, 14:14
Avatar de tedydavis
tedydavis
 
Fecha de Ingreso: mayo-2012
Mensajes: 4
Antigüedad: 12 años
Puntos: 0
Respuesta: Problemas con giro de imagenes (CSS3)

probe quitandole el charset... y tmb sigue sin funcionar... :s

te paso la hoja de estilos completa

Código:
@keyframes anim_3d{
from{transform: rotateY(0deg);}
to{transform: rotateY(360deg);}	
}

body{
	background:#000;
	margin: 0px;
	padding: 0px;		
}
table{
	border-collapse:collapse;
	width: 100%;
	height: 100%;
	border: 0px;
	border-spacing: 0px;	
}
h2{
	font-family: Helvetica, sans-serif;
	font-size:63px;
	color: #FFF;
	text-shadow:
	1px 1px 0 #CCC,
	2px 2px 0 #CCC,
	3px 3px 0 #444,
	4px 4px 7px #444;
	behavior:url(scripts/ie-css3.htc);
}
h3{
	font-family: Helvetica, sans-serif;
	color: #FFF;
	text-shadow: 1px 0px 0 #999;
}
#3d{
	width: 100px;
	height: 149px;
	animation-name: anim_3d;
	transform-style: preserve-3d;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	animation-duration: 6s;
	animation-play-state: running;
	position:relative;
	behavior:url(scripts/ie-css3.htc);
}