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 */
}
link|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
feedback

2 Answers

up vote 2 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

link|improve this answer
feedback

Is this what you need:

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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