CSS3 Animations Part1
Css
<style>
.box{
width:90px;
height:90px;
background:#666;
-webkit-transition: all 0.7s ease
}
.box:hover{
width:180px;
-webkit-transition: all 0.7s ease;
}
</style>Html
<div class='box'></div>
Css
<style>
.box{
width:90px;
height:90px;
background:#666;
-webkit-transition: all 0.7s ease
}
.box:hover{
width:180px;
-webkit-transition: all 0.7s ease;
}
</style>Html
<div class='box'></div>