Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
CSS3 transition of background-image for Firefox not working

first post here. I've researched and have seemingly been close to finding the answer, but maybe I'm just frustrated.

I can't get my CSS3 transition of ease-in-out of a background image to work in FF, but it works in Chrome.

Here's my code via jsFiddle: http://jsfiddle.net/hWnf4/

HTML:

<a href="http://example.com" title="" id="logo">
<span id="logoimg"></span></a>​

CSS:

#logo {display:inline-block; padding-top:22px; text-decoration:none;font-family:'YanoneKaffeesatzRegular',"Helvetica", Arial, sans-serif;font-size:3em;margin-bottom:18px;}
#logo:link, #logo:visited {color:#fff;}
#logo:hover, #logo:active {color:#ccc;}
#logoimg {display:inline-block; width:405px; height:220px; background:url('http://www.webdesign-guru.co.uk/icon/wp-content/uploads/black-round-glassy.gif') no-repeat; transition: background .25s ease-in-out; -moz-transition: background .25s ease-in-out; -webkit-transition: background .25s ease-in-out;}
#logoimg:hover {background:url('http://www.webdesign-guru.co.uk/icon/wp-content/uploads/green-round-glassy-button.gif') no-repeat;}​
share|improve this question
It works in FF. Which version of FF are you using? – Ashwin Singh Jul 12 '12 at 5:01
The latest FF version. – crowflux Jul 12 '12 at 5:31
Oh, I guess I passed that question. Thanks. That sucks that it's not supported yet. :( – crowflux Jul 12 '12 at 5:31

marked as duplicate by casperOne Jul 13 '12 at 15:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

I think this will help you.

http://oli.jp/2010/css-animatable-properties/#background-image

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.