4.Image zoom effect in Blogger


1. Go to Blogger
2. Copy the code paste in Layout>Advanced>CSS 
/* CSS image zoom effect Start */ .post img { -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; -ms-transition: all 1s ease; transition: all 1s ease } .post img:hover { width: 93%; height: 93%; } /* CSS image zoom effect end */
That's it!
/* CSS image zoom effect Start */
.post img { -webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease }
.post img:hover {
width: 93%;
height: 93%;
}
/* CSS image zoom effect end */
Previous Post Next Post