Imagen de fondo para firefox en animaciones CSS3.

Estoy haciendo animación de fotogramas clave en CSS. La animación parece estar funcionando muy bien en Chrome ya que las sintaxis de -webkit son compatibles.

@-webkit-keyframes title_toggle 
{
from { background-image:url(images/title.png); }
75%{ background-image:url(images/title_hover.png); }
to { background-image:url(images/title.png); }
}

Probé el siguiente código para Firefox, pero no funciona.

@-moz-keyframes title_toggle {
from { background-image:url(images/title.png); }
75%{ background-image:url(images/title_hover.png); }
to { background-image:url(images/title.png); }
}

Por favor, hágamelo saber que haría este trabajo en FF.

Esta es la parte de CSS.

@-moz-keyframes title_toggle {
from { background-image:url(images/title.png); }
75%{ background-image:url(images/title_hover.png); }
to { background-image:url(images/title.png); }
}

.title{
    width:40%;
    height: 30%;
    position: absolute;
    top: 10%;
    left: 5%;
    background-size: 100% 100%;
    background-repeat:no-repeat;
    -webkit-animation-name: title_toggle;
    -webkit-animation-duration:5s;
    -webkit-animation-iteration-count:infinite;
    background-size: 100% 100%; 
     -moz-animation-name: title_toggle;
     -moz-animation-duration:5s;
     -moz-animation-iteration-count:infinite;
}

Y este es el HTML.

<div class="title"></div>

Respuestas a la pregunta(2)

Su respuesta a la pregunta