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.

I couldn't get transitions to work on this page, anybody has any idea why?

div.sicon a {
    transition: background 0.5s linear;
    -moz-transition: background 0.5s linear; /* Firefox 4 */
    -webkit-transition: background 0.5s linear; /* Safari and Chrome */
    -o-transition: background 0.5s linear; /* Opera */
    -ms-transition: background 0.5s linear; /* Explorer 10 */
}
share|improve this question
1  
What exactly is the issue? – Steve Adams Oct 28 '11 at 0:47
What actually are you trying to do with background? – Rajat Saxena Nov 2 '11 at 14:16
looks great to me anyway on the page so can't see what the issue is. – Michael Durrant Nov 18 '11 at 14:02

2 Answers

up vote 3 down vote accepted

transition is more like an animation.

div.sicon a {
    background:-moz-radial-gradient(left, #ffffff 24%, #cba334 88%);
    transition: background 0.5s linear;
    -moz-transition: background 0.5s linear; /* Firefox 4 */
    -webkit-transition: background 0.5s linear; /* Safari and Chrome */
    -o-transition: background 0.5s linear; /* Opera */
    -ms-transition: background 0.5s linear; /* Explorer 10 */
}

so u need to invoke that animation with an action..

div.sicon a:hover {
    background:-moz-radial-gradient(left, #cba334 24%, #ffffff 88%);
}

also check for browser support and if u still have some problem with whatever ur trying to do! Check css overridings in ur style sheet and also check out for behavior: ***.htc css hacks.. there may be something overriding ur transition!

and u should check this out: http://www.w3schools.com/css3/css3_transitions.asp

share|improve this answer

Is this what you need:

http://jsfiddle.net/vSUQP/16/

share|improve this answer

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.