Reputation: 79
I am doing an e-commerce site. I am use Bootstrap. What should I use when doing the product detail page? I want it to be as follows.
I want the picture to grow when it comes to the picture.
Upvotes: 2
Views: 28150
Reputation: 505
Here is a working example
here is the html
<p>Background image:</p>
<div class="zoom-bg"></div>
<p>Using nested image and <code>object-fit</code>:</p>
<div class="zoom-img">
<img src="https://placeimg.com/300/200/arch">
</div>
here is the css
.zoom-bg {
width: 300px;
height: 200px;
overflow: hidden;
}
.zoom-bg:before {
content: '';
display: block;
width: 100%;
height: 100%;
background: url(https://placeimg.com/300/200/nature) no-repeat center;
background-size: cover;
transition: all .3s ease-in-out;
}
.zoom-bg:hover:before {
transform: scale(1.2);
}
.zoom-img {
width: 300px;
height: 200px;
overflow: hidden;
}
.zoom-img > img {
object-fit: cover;
width: 100%;
height: 100%;
transition: all .3s ease-in-out;
}
.zoom-img:hover > img {
transform: scale(1.2);
}
check the working example here in codepen
Upvotes: 0
Reputation: 254
Here i have some code this may help you, grow your image with pure CSS.
CSS
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
.HoverDiv {
position: relative;
overflow: hidden;
border:1px solid black;
width:360px;
margin: 10px;
}
.HoverDiv img {
max-width: 100%;
text-align:center;
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.HoverDiv:hover img {
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
img {
display: inline-block;
border: 1px solid #ddd;
border-radius: 4px;
padding: 5px;
transition: 0.3s;
position:relative;
z-index:1;
}
img:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
-webkit-transform: skewX(-20deg);
-ms-transform: skewX(-20deg);
transform: skewX(-20deg);
-webkit-transform-origin:0 0;
-ms-transform-origin:0 0;
transform-origin:0 0;
}
HTML
<div class="HoverDiv">
<img src="http://pngimg.com/upload/tiger_PNG546.png" alt="Smiley face">
</div>
DEMO
Upvotes: 1