Based on the CSS 3 image hover zoom effect, CSS3 hover zoom
Today, we are going to share a cool CSS3 image special effect, which allows you to hover and zoom over the image with a mouse over it, and make the image glow around it. With a black background, this CSS3 image is more stereoscopic and suitable for displaying product images.
Download Online Preview source code
Implementation code.
Html code:
<div id="image-container"> <div class="img" id="img-1"> <div class="mask"> </div> </div> <div class="img" id="img-2"> <div class="mask"> </div> </div> <div class="img" id="img-3"> <div class="mask" id="mask-1"> </div> <div class="mask" id="mask-2"> </div> </div> <div class="img" id="img-4"> <div class="mask"> </div> </div> <div class="img" id="img-5"> <div class="mask"> </div> </div> <div class="img" id="img-6"> <div class="mask"> </div> </div> <div class="clearfix"> </div> </div> <div class="clearfix"> </div> <br> <div id="warning" style="margin-top: 20px; text-align: center;"> </div>
Via: http://www.w2bc.com/Article/29682