Mouseover Zoom Effect
Use this CSS
<style>
.image{
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
-moz-transform:0.4s ease;
}
.image:hover{
opacity: 0.8;
transform: scale(1.05);
-webkit-transform: scale(1.08);
-moz-transform: scale(1.08);
}
</style>
.image{
-webkit-transition: 0.4s ease;
transition: 0.4s ease;
-moz-transform:0.4s ease;
}
.image:hover{
opacity: 0.8;
transform: scale(1.05);
-webkit-transform: scale(1.08);
-moz-transform: scale(1.08);
}
</style>
No comments:
Post a Comment