Zoom In Effect with Caption using css3

we will do the lot of animation effects in your websites using the simple css3 codes , Here we will see how to create the zoom in effect on hover the image using the css3 transition and scaling the image. You can grow an image and shrink on mouse hover. Every websites needs minimum animation effects to attract the customers.

Now a days css3 animation is working better then the js animations.CSS transitions, which are part of the CSS3 set of specifications, provide a way to control animation speed when changing CSS properties.

.hover01 figure img {
 -webkit-transform: scale(1);
 transform: scale(1);
 -webkit-transition: .3s ease-in-out;
 transition: .3s ease-in-out;
 width:300px;
 height:250px;
}

.hover01 figure:hover img {
 -webkit-transform: scale(1.3);
 transform: scale(1.3);
}

I provided the html and css code for creating the zoom in on image hover. Zooming image on mouse hover can be created using CSS3 scaling transformation. This tutorial is very easy and this effect can be easily created using few lines of code. Here i provided the demo page and code for this simple zoom in effect. I hope this is very useful  will see the another css3 effect next post.



Code for Zoom in Effect on Hover the Image:

<html>
<head>
<title>Zoom in Effect with caption using css3</title>
<style>
.column {
margin: 15px 15px 0;
padding: 0;
}
.column:last-child {
padding-bottom: 60px;
}
.column::after {
content: '';
clear: both;
display: block;
}
.column div {
position: relative;
float: left;
width: 300px;
height: 200px;
margin: 0 0 0 25px;
padding: 0;
}
.column div:first-child {
margin-left: 0;
}
.column div span {
position: absolute;
bottom: -20px;
left: 0;
z-index: -1;
display: block;
width: 300px;
margin: 0;
padding: 0;
color: #444;
font-size: 18px;
text-decoration: none;
text-align: center;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
opacity: 0;
}
figure {
width: 300px;
height: 200px;
margin: 0;
padding: 0;
background: #fff;
overflow: hidden;
}
figure:hover+span {
bottom: -36px;
opacity: 1;
}

.hover01 figure img {
-webkit-transform: scale(1);
transform: scale(1);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
width:300px;
height:250px;
}

.hover01 figure:hover img {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
</style>
</head>
<body>
<div class="hover01 column">
<div>
<figure><img src="1.jpeg" /></figure>
<span>Hover</span>
</div>
<div>
<figure><img src="2.jpeg"  /></figure>
<span>Hover</span>
</div>
<div>
<figure><img src="3.jpeg" /></figure>
<span>Hover</span>
</div>
<div>
<figure><img src="4.jpeg" /></figure>
<span>Hover</span>
</div>
</div>
</body>
</html>

Post a Comment

0 Comments