How to Add Zoom Effect On Your Blogger Images?

Zoom effect in images is one of the best things I always want to add in my blogger images. Zoom gives your image a new personality. So, if you are looking for something for your images like zooming on hover, then I’m telling you that you are at a right place. Well, zoom effect is of many kinds of examples: Cloud zoom effect, Classic zoom effect and many other. In this tutorial, I’m going to show you “How to add zoom effect to blogger images”? Let’s start!

  •  First of all sign into your Blogger account.
  • Go to dashboard and drop down the menu of your blog, if you have two or more blog then select a blog on which you can add zoom effect for images.
  • Now click Template > Edit HTML. You can also download a copy of your template.
  • Expand your HTML code.
  • Use Ctrl+F to find ]]></b:skin> and paste  the following code above/before it.

.zoomeffect img{
-webkit-transform:scale(0.8);
-moz-transform:scale(0.8);
-o-transform:scale(0.8);
-webkit-transition-duration: 0.5s;
-moz-transition-duration: 0.5s;
-o-transition-duration: 0.5s;
opacity: 0.7;
margin: 0 10px 5px 0;
}
 
.zoomeffect img:hover{
-webkit-transform:scale(1.1);
-moz-transform:scale(1.1);
-o-transform:scale(1.1);
opacity: 1;
}

  • Click on save template.

How to activate it on blogger images?

Well, it’s not a big deal. It’s so simple and easy. Once you have done with coding then, all you have to do is just simply follow these steps to activate zoomeffect to your blogger images.

Whenever you have uploaded images in your post editor, switch to HTML mode. Change the class of your image whatever it is to “Zoomeffect”.

Example of the Zoom Effect:

Your image class in post editor will be <div class=“seperator”, now change it to <div class=“zoomeffect”

If you are adding it to any other part on your blog, you can use the following code.
<a class=”zoomeffect” href=“YOUR-IMAGE-URL/” target=”_blank”>
<img src=“http://YOUR-IMAGE-URL” /></a>

Replace YOUR-IMAGE-URL with the link of the image you want to apply the effect to.
That’s all!

5 thoughts on “How to Add Zoom Effect On Your Blogger Images?”

  1. It would be great if you have any live examples working on Blogr blogs posts/pages as it may help others — who may have limitations & coding difficulties ;). Gives them the opportunity how the CSS codes can be easily extended…

    Anyways thanks for the share & useful tutorials.

    Reply

Leave a Comment