css3 transform - scale 2
css3 transform - scale 2
by fatihhayri
HTML
<div class="deneme">
</div>
CSS
body {
margin: 30px
}
.deneme {
width: 50px;
height: 50px;
background-color: #06F;
color: #fff;
border: 2px solid #000;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s
}
.deneme:hover {
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5)
}