Note that there are some explanatory texts on larger screens.

plurals
  1. POSimple CSS3 keyframe animation doesn't work in Firefox
    primarykey
    data
    text
    <p>I have created one simple CSS3 keyframe animation that switches bg image of an element. It is working perfectly, but my trusty Firefox has failed me. I was using prefix free at first, then I thought that it may be the problem, after that I wrote all prefixes by hand, still nothing in Firefox.</p> <p>You can see the example at: <a href="http://madebym.me/test/nimbus/index.html" rel="nofollow">http://madebym.me/test/nimbus/index.html</a></p> <p>Also, here is the relevant code, the truck should switch lights on and off.</p> <pre><code>-webkit-animation: switch-truck-lights 1s linear infinite normal; -moz-animation: switch-truck-lights 1s linear infinite normal; -ms-animation: switch-truck-lights 1s linear infinite normal; -o-animation: switch-truck-lights 1s linear infinite normal; animation: switch-truck-lights 1s linear infinite normal; } @keyframes "switch-truck-lights" { from { background-image: url(../images/truck-off.png); } to { background-image: url(../images/truck-on.png); } } @-moz-keyframes switch-truck-lights { from { background-image: url(../images/truck-off.png); } to { background-image: url(../images/truck-on.png); }; } @-webkit-keyframes "switch-truck-lights" { from { background-image: url(../images/truck-off.png); } to { background-image: url(../images/truck-on.png); }; } @-ms-keyframes "switch-truck-lights" { from { background-image: url(../images/truck-off.png); } to { background-image: url(../images/truck-on.png); }; } @-o-keyframes "switch-truck-lights" { from { background-image: url(../images/truck-off.png); } to { background-image: url(../images/truck-on.png); }; } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload