Friday, 25 January 2013

Resize box and change color

CSS
.box{
width: 200px;
height:50px;
background:#CFCFCF;
-webkit-transition:all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.box:hover{
width:300px;background:#121212;
}

HTML
<div class='box'></div>

Hasil:

4 comments:

Harta berharga adalah nasehat yang baik. Pembaca yang baik akan memberikan nasehat yang baik.

Top