contohnya:
sriptnya ada di bawah ini
<style>
#transDemo2 div {
height:100px;
width:100px;
border:1px red solid;
margin:10px auto;
text-align:center;
-webkit-transition: all 2s ease-in-out;
-moz-transition: all 2s ease-in-out;
-o-transition: all 2s ease-in-out;
transition: all 2s ease-in-out;
}
#transDemo2 div:hover, #transDemo2 div.hover_effect {
-webkit-transform:rotate(720deg) scale(2,2);
-moz-transform:rotate(720deg) scale(2,2);
-o-transform:rotate(720deg) scale(2,2);
transform:rotate(720deg) scale(2,2);
}
</style>
<div id="transDemo2">
<div class="hover">nama file gambar anda beserta ekstensinya</div>
</div>
resep kue keren gan
ReplyDelete