At TXJS presently. Breaking for lunch. I sat with Tim Thomas earlier. He showed me CSS3 transitions. I have kind of shied away from CSS3 due to the downwards compatibility issues, but I know I cannot do so forever. I saw Divya Manian of Opera speak on Transitions and she mention that even IE10 will support them so they will eventually become the de facto way to do CSS animations.
a:hover {
color: red;
-webkit-transition: color .25s linear;
transition: color .25s linear;
}
No comments:
Post a Comment