How to use Transitions in CSS3
So CSS3 is getting a lot of hype right now & I've been playing around with a few new features, One of them being CSS Transitions. As you can probably tell from the name it's a way to animate between an
How to use it
Like most new properties in CSS3 it uses a browser extension Ex: -moz-box-shadow.
a { color: #999; -webkit-transition: color 0.3s linear; }
a:hover { color: #000; }
At first, it was a little confusing but I'm used to it now. First, you declare what property you want to animate between, the amount of time it will take to go from
The nice thing about using this is that it has a really nice fall-back for older browsers or browsers that us not support it. It just does a hard change from