CSS3 Transition Example - Background Color change
by VIvek Vaishnav
HTML
<div class="box1">box1</div>
<div class="box2">box2</div>
CSS
.box1{padding: 70px; margin: 5px; background: #c5e1a5; width: 100px; display: inline;}
.box2 { padding: 70px; margin: 5px; background: #b2ebf2; width: 100px; display: inline }
.box1 { transition-property: background; transition-duration: 2s } .box1:hover { background: #90CAF9 }
.box2:hover { background: #ffd54f }
.box2 {transition-property: background; transition-duration: 4s}