Desde que agregué una transición css (la primera estaba en vuelo estacionario, la segunda era una animación) parece haber estropeado mis fuentes, se ven "diferentes".transición de CSS3 arruinando fuentes en webkit?
Es totalmente extraño, he buscado durante horas y no puedo encontrar nada en él, ni puedo averiguar exactamente por qué está sucediendo.
Parece que está bien en Firefox, pero safari y Chrome están teniendo problemas.
todo por debajo de la animación de engranajes en la parte inferior izquierda parece mirar como un peso más ligero y la fuente del menú de navegación parece tener el mismo aspecto.
Estoy totalmente perdido en este caso.
Aquí está el CSS para la animación.
.gearone {height:100px;
width:100px;
top:-10px;
left:-10px;
position:absolute;
background-position:center;
background-repeat:no-repeat;
background-image:url(../images/gearone.png);
-webkit-animation-name: backrotate;
-webkit-animation-duration: 13s;
-webkit-animation-iteration-count: infinite;
-webkit-transition-timing-function:linear;
-moz-animation-name: backrotate;
-moz-animation-duration: 13s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
}
.geartwo {height:100px;
width:100px;
position:absolute;
background-position:center;
background-repeat:no-repeat;
background-image:url(../images/gearone.png);
top:20px;
left:10px;
-webkit-animation-name: rotate;
-webkit-animation-duration: 13s;
-webkit-animation-iteration-count: infinite;
-webkit-transition-timing-function:linear;
-moz-animation-name: rotate;
-moz-animation-duration: 13s;
-moz-animation-timing-function:linear;
-moz-animation-iteration-count: infinite;
}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes rotate {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes backrotate {
0% {
-webkit-transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(0deg);
}
}
@-moz-keyframes backrotate {
0% {
-moz-transform: rotate(360deg);
}
100% {
-moz-transform: rotate(0deg);
}
}
Nadie tiene alguna idea? – andy