obraz tła dla firefox w animacjach CSS3

Tworzę animację klatek kluczowych w CSS. Wydaje się, że animacja działa bardzo dobrze w Chrome, ponieważ obsługiwane są składnie -webkit.

@-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); }
}

Próbowałem kodu poniżej dla Firefoksa, ale nie działa

@-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); }
}

Daj mi znać, że to działa w FF.

To jest część 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;
}

A to jest HTML

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

questionAnswers(2)

yourAnswerToTheQuestion