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 */
}
Transition is more like an animation.
So you need to invoke that animation with an action.
Also check for browser support and if you still have some problem with whatever you’re trying to do! Check css-overrides in your stylesheet and also check out for
behavior: ***.htccss hacks.. there may be something overriding your transition!You should check this out: http://www.w3schools.com/css/css3_transitions.asp