Add ease in out Effect on Blogger Post Thumbnail

Add ease in out Effect on Blogger Post Thumbnail
thumbnail effect

In Blogger Post thumbnail on home page we can add different effect to make it little different. But you may see some post thumbnails on homepage that after mouse over on the it will rotate slightly. This is just like zoom effect but actually the image rotate 2 degree angle. As a result we see a effect. This effect first added on WordPress blog and now we can use easily in Google Blogger Platform. Professional designer often use this design to make their template design unique. For your kinds information, this effect only work on blogger home page. But in post page you won't see any effect. By following this tutorial you can add this effect on your Blogger template. So I have written this tutorial. The following steps might be helpful for you. 
 
Step 1 Log in to your Blogger account and Go to your Blogger Dashboard

Step 2 Click on -> Template -> Edit HTML

Step 3 Now find ]]></b:skin> by Pressing Ctrl+F (Windows) or CMD+F (Mac)   

Step 4 And Paste the below code above/before ]]></b:skin> 


.post img {
-webkit-transition:all .4s ease-in-out;
-moz-transition:all .4s ease-in-out;
-o-transition:all .4s ease-in-out;
-ms-transition:all .4s ease-in-out;
transition:all .4s ease-in-out;
}
.post img:hover{
opacity:.8;
-webkit-transform:scale(1.1) rotate(-2deg);
-moz-transform:scale(1.1) rotate(-2deg);
-ms-transform:scale(1.1) rotate(-2deg);
transform:scale(1.1) rotate(-2deg);
}

Step 5 Now simply hit the Save Template button.

For testing the effect you have to mouse over on Blog image thumbnail from Blogger Homepage. You will see the thumbnail are slightly rotate with zoom effect, Just like ease in out. 


Remember that there are some Blogger template that coded with different word. for example in this tutorial I have use .post img but this code maybe create by using .post thumbnail. So if you find different code then replace the .post img with your template code. However If you can't find the code then you can comments below I will solve the issue. Thank you. 
Go Up