image zoom css code example
Example 1: zoom image css
/*Zoom on hover*/
<style>
.zoom {
padding: 50px;
background-color: green;
transition: transform .2s;
width: 200px;
height: 200px;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
}
</style>
<div class="zoom"></div>
/*credits: w3schools.com */
Example 2: hover reinzoomen css
div.image {
width: 300px;
height: 200px;
overflow: hidden;
}
div.image img {
width: 100%;
height: auto;
/* SCALE */
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
/* VERZÖGERUNG */
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
transition: all 0.3s linear;
}
div.image img:hover {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
}
Example 3: zoom level in css
.zoom {
zoom: 150%;
}
Example 4: equivalent zoom css
-moz-transform: scale(0.5);
-webkit-transform: scale(0.5);
-o-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5);
Example 5: zoom in to picture on html css
/* Point-zoom Container */.point-img-zoom img { transform-origin: 65% 75%; transition: transform 1s, filter .5s ease-out;}/* The Transformation */.point-img-zoom:hover img { transform: scale(5);}
Example 6: how to use image zoom effect in css
.parent:hover .child,
.parent:focus .child {
transform: scale(1.2);
}