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.

http://jsfiddle.net/ubcka/14/

Animating the background-size property doesn't seem to be working in Chrome or Safari.

Thanks!

div {
    width: 161px;
    height: 149px;
    background: url(http://3.bp.blogspot.com/_HGPPifzMEZU/Rw4ujF12G3I/AAAAAAAAAWI/bc1ppSb6eKA/s320/estrelas_09.gif) no-repeat center center;
    background-size: 50% 50%;
    transition: background-size 2s ease-in;
    -moz-transition: background-size 2s ease-in;
    -web-kit-transition: background-size 2s ease-in

}

div:hover {background-size: 100% 100%}
share|improve this question

3 Answers

up vote 3 down vote accepted

You should check the browser version and whether it supports both background-size and transition. If the former, but not the latter use:

transition: background-size 2s ease-in;
-moz-transition: background-size 2s ease-in;
-ms-transition: background-size 2s ease-in;
-o-transition: background-size 2s ease-in;
-webkit-transition: background-size 2s ease-in;
share|improve this answer
The prefixes were there in his original question and his fiddles. I'm not sure why he removed them. – BoltClock Jan 20 '12 at 21:12
1  
don't forget -ms-transition: (for IE10 coming up) – JayC Jan 20 '12 at 21:14
Thanks. I guess animating background-size is only supported in firefox – j-man86 Jan 20 '12 at 21:42
@JayC It's added and thanks for the heads up. – Brett Pontarelli Jan 20 '12 at 22:13
1  
@j-man86: What do you mean you "guess animating background-size is only supported in firefox"? Note that in you post and fiddle you have -web-kit- which should be -webkit-. – Brett Pontarelli Jan 25 '12 at 23:11

You just need to change:

-web-kit-transition: background-size 2s ease-in;

to:

-webkit-transition: background-size 2s ease-in;
share|improve this answer

YOu can also just change all the transition declarations to read like this (it's not the background but the background-size that is changing:

transition: background-size .4s ease-in-out;
share|improve this answer
thanks fordareh, but that still does not produce any animation – j-man86 Jan 20 '12 at 20:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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