JaseW
JaseW

Reputation: 98

CSS Transition works on Chrome but not in firefox or Safari?

I have been following mozilla developer network's docs and created a transition for my images to change. They seem to work fine in Chrome (19?) but not in Firefox 11 (or any other browser).

I have created a test case here on jsfiddle - http://jsfiddle.net/9nevB/1/ I've tried this in many different ways and still can't get it to work on firefox.

Any ideas?

Thanks

Upvotes: 1

Views: 1024

Answers (1)

Evan Mulawski
Evan Mulawski

Reputation: 55334

According to the CSS3 specification, background-image is not animatable. Browsers may provide this implementation, but it is not standardized.

Upvotes: 1

Related Questions