Easy Image Hover Effects For Blogger

SHARE:

Hey users! Welcome to my site. Images plays a very important role in changing the appearance of your blog. Users like the blogs which has images. An image can tell many thing which you can't express in your words. So, today I have brought some cool image hover effects for Blogger blog. I really like these image hover effects and that's the reason I am sharing some awesome image hover effect. You should have to go through these. These will make your blogs' image more beautiful. I have included 9 image effects which you can use in your Blogger blog.


Image Hover Effects For Blogger

Instructions

  • I have added CSS of each image hover effects for blogger.
  • Demo is available below each hover effect heading.
  • If you like a particular effect than copy the CSS below demo image and click on installing instruction to know the very easy way to add that effect in your Blogger blog.
  • Installing instruction is given at bottom of this post.
Now we are ready to see some beautiful image hover effects for Blogger blog.

How to add CSS image hover effect in blogger

For the newbies who don't know how to add CSS image hover effect in blogge here is small guide for them so they can also become able to add css image hover effects to their blogger blogs. To add CSS image hover effect in blogger follow below steps:
  • Goto blogger dashboard
  • goto Template >> edit html
  • Search for ]]></b:skin> tag ( quick tip: to search easily press ctrl+f )
  • Just above ]]></b:skin> paste one of the below CSS image hover effect code.
  • Done!

Image Hover Effects For Blogger

So you want a cool effects on your image. If yes I have many effects for you. You will like each effects. I have added some description on each image hover effects to make you familiar about each effects. If you like it than feel free to copy it for your personal use. It is very simple to install these on Blogger. Just copy the CSS code of the image effect you like and than click on Installing instruction to know how to add that effect to blogger.

Opacity

This is a pretty cool effect. Most bloggers likes to use this hover effect. It will change the opacity of the image on mouse hover. Below is the CSS for this effect. To know the adding instruction of this effect click on Installing Instruction below CSS code. At the mean time hover your mouse on image below to see how this hover effect will look.

.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 {
opacity:0.7;
filter:alpha(opacity=50);
}

Zoom Out on Hover

By using this effect the image will be zoom out on hover. It will not effect your blog width. And I have slow down the zoom process to make it more beautiful. Here is the CSS.

Image Hover Effects For Blogger
.post img{
-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;
}
.post img:hover {
-o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -webkit-transform: scale(1.4);
}

Reflection on Image Hover

Whenever the mouse will be hovered on the image than this CSS code will produce a reflection of that image. Only webkit supported browser will be able to show this effect. Let's see the CSS code for this image hover effect for Blogger.

.post img{
-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;
}
.post img:hover {
opacity: 1; /*Reflection*/ -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4))); /*Glow*/ -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); -moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}

Tilt Effect

This is really simple. We are going to rotate the image slightly when users will hover on this image. You will like this hover effect. Now the time to see the CSS code. Css code is for this is gven below image.

.post img{
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.post img:hover {
-webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

Blur Effect for Blogger

It is also quite simple. We will only need a few lines of codes to make this effect. Again this will work on Webkit browsers. Now see the CSS below demo image.

.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 {
-webkit-filter: blur(5px);
}

Spin Effect

Whenever the user will hover on your blogger image than the image will start to spin. This is really crazy. The image will change from square to circle. See the demo below.

.post img{
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.post img:hover {
border-radius: 50%;
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

GreyScale

It will be like black & white image. When user will hover on the image of your blogger blog than it will turn black & white. The CSS code for this image hover effect for blogger is given below. Now see the demo and CSS.

.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 {
-webkit-filter: grayscale(100%);
}

Brightness

To make this effect I have changed the brightness of image. And when the user will hover on the image than the image will become more bright. See the CSS below. You know what you have to do.


.post img{
-webkit-filter: brightness(60%);
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
-webkit-filter: brightness(100%);
}

Rotate Image 360 deg. On Hover

This is really cool effect. It will make your image to rotate with little zoom effect. To make it more beautiful I have added little shadow on hover. It will completely change your image appearance on hover. Give it a try or see the demo of this image below. If you like it than copy the CSS code given below this image and click on installing instruction to know how to add this hover effect on blogger.


.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 {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
padding: 4px;
background: #eee;
background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #ddd), color-stop(0.5, #c0c0c0), to(#aaa));
background: -moz-linear-gradient(top, #eee, #ddd 50%, #c0c0c0 50%, #aaa);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 3px rgba(0,0,0,.7);
-moz-box-shadow: 0 0 3px rgba(0,0,0,.7);
box-shadow: 0 0 3px rgba(0,0,0,.7);
-moz-transform: scale(1.2) rotate(-350deg);
-webkit-transform: scale(1.2) rotate(-350deg);
-o-transform: scale(1.2) rotate(-350deg);
-ms-transform: scale(1.2) rotate(-350deg);
transform: scale(1.2) rotate(-350deg);
-webkit-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
-moz-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
}

Rotate and Spin Effect

Here is another effect for images which is mixture of rotate and spin effect. To make it more beautiful I have added some background color when hovered on image. To see the demo of this effect just hover your mouse on the images of recent posts. Alternatively you can see the Demo of this image hover effect for Blogger in the image given below. And if you like this image hover effect than copy the CSS code below and add to your CSS area of your Template by following the steps given below the CSS.

.post img:hover {
opacity: 1;
-moz-transform: scale(1.2) rotate(-350deg);
-webkit-transform: scale(1.2) rotate(-350deg);
-o-transform: scale(1.2) rotate(-350deg);
-ms-transform: scale(1.2) rotate(-350deg);
transform: scale(1.2) rotate(-350deg);
-webkit-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
-moz-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;  rgba(0, 0, 0, .4);
-o-transition: all 0.8s ease-out;
-webkit-transition: all 0.8s ease-out;
-ms-transition: all 0.8s ease-out;
transition: all 0.8s ease-out;
}


These were the 8 cool and interesting image hover effects for Blogger. I will keep updating with the latest effects. Hope you find your desired effect for your blog or site. If you face any problem than feel free to ask me.

COMMENTS

Name

11th,2,12th,20,12th Chemistry,5,12th Computer Science,7,12th Physics,1,5th Sem CSE,1,AAI ATC,2,Android,18,Banking,1,Blogger,41,Books,5,BTech,17,CBSE,22,CSE,4,ECE,3,Electronics,1,English,2,ESE,1,Ethical Hacking,61,Exams,5,Games,9,GATE,1,GATE ECE,1,Government Jobs,1,GS,1,How To,27,IBPS PO,1,Information,52,Internet,24,IPU,8,JEE,8,JEE Mains,8,Jobs,1,Linux,65,News,18,Notes,23,Physics,3,Placement,10,PO,1,Poetry,3,RRB,1,SEO,11,Softwares,38,SSC,2,SSC CGL,1,SSC GS,2,Tips and Tricks,46,UPSC,1,Windows,46,
ltr
item
SolutionRider- One Stop Solution for Notes, Exams Prep, Jobs & Technical Blogs.: Easy Image Hover Effects For Blogger
Easy Image Hover Effects For Blogger
Hey users! Welcome to my site. Images plays a very important role in changing the appearance of your blog. Users like the blogs which has images. An image can tell many thing which you can't express in your words. So, today I have brought some cool image hover effects for Blogger blog. I really like these image hover effects and that's the reason I am sharing some awesome image hover effect. You should have to go through these. These will make your blogs' image more beautiful. I have included 9 image effects which you can use in your Blogger blog. Image Hover Effects For Blogger Instructions I have added CSS of each image hover effects for blogger. Demo is available below each hover effect heading. If you like a particular effect than copy the CSS below demo image and click on installing instruction to know the very easy way to add that effect in your Blogger blog. Installing instruction is given at bottom of this post. Now we are ready to see some beautiful image hover effects for Blogger blog. How to add CSS image hover effect in blogger For the newbies who don't know how to add CSS image hover effect in blogge here is small guide for them so they can also become able to add css image hover effects to their blogger blogs. To add CSS image hover effect in blogger follow below steps: Goto blogger dashboard goto Template >> edit html Search for ]]> tag ( quick tip: to search easily press ctrl+f ) Just above ]]> paste one of the below CSS image hover effect code. Done! Image Hover Effects For Blogger So you want a cool effects on your image. If yes I have many effects for you. You will like each effects. I have added some description on each image hover effects to make you familiar about each effects. If you like it than feel free to copy it for your personal use. It is very simple to install these on Blogger. Just copy the CSS code of the image effect you like and than click on Installing instruction to know how to add that effect to blogger. Opacity This is a pretty cool effect. Most bloggers likes to use this hover effect. It will change the opacity of the image on mouse hover. Below is the CSS for this effect. To know the adding instruction of this effect click on Installing Instruction below CSS code. At the mean time hover your mouse on image below to see how this hover effect will look. Image Hover Effects For Blogger .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 { opacity:0.7; filter:alpha(opacity=50); } Zoom Out on Hover By using this effect the image will be zoom out on hover. It will not effect your blog width. And I have slow down the zoom process to make it more beautiful. Here is the CSS. Image Hover Effects For Blogger .post img{ -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; } .post img:hover { -o-transition: all 0.6s; -moz-transition: all 0.6s; -webkit-transition: all 0.6s; -moz-transform: scale(1.4); -o-transform: scale(1.4); -webkit-transform: scale(1.4); } Reflection on Image Hover Whenever the mouse will be hovered on the image than this CSS code will produce a reflection of that image. Only webkit supported browser will be able to show this effect. Let's see the CSS code for this image hover effect for Blogger. Image Hover Effects For Blogger .post img{ -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; } .post img:hover { opacity: 1; /*Reflection*/ -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4))); /*Glow*/ -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); -moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); box-shadow: 0px 0px 20px rgba(255,255,255,0.8); } Tilt Effect This is really simple. We are going to rotate the image slightly when users will hover on this image. You will like this hover effect. Now the time to see the CSS code. Css code is for this is gven below image. Image Hover Effects For Blogger .post img{ -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; -ms-transition: all 0.5s ease; transition: all 0.5s ease; } .post img:hover { -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); -ms-transform: rotate(-10deg); transform: rotate(-10deg); } Blur Effect for Blogger It is also quite simple. We will only need a few lines of codes to make this effect. Again this will work on Webkit browsers. Now see the CSS below demo image. Image Hover Effects For Blogger .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 { -webkit-filter: blur(5px); } Spin Effect Whenever the user will hover on your blogger image than the image will start to spin. This is really crazy. The image will change from square to circle. See the demo below. Image Hover Effects For Blogger .post img{ -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; -ms-transition: all 0.5s ease; transition: all 0.5s ease; } .post img:hover { border-radius: 50%; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } GreyScale It will be like black & white image. When user will hover on the image of your blogger blog than it will turn black & white. The CSS code for this image hover effect for blogger is given below. Now see the demo and CSS. Image Hover Effects For Blogger .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 { -webkit-filter: grayscale(100%); } Brightness To make this effect I have changed the brightness of image. And when the user will hover on the image than the image will become more bright. See the CSS below. You know what you have to do. Hover Effect On Image For Blogger .post img{ -webkit-filter: brightness(60%); -moz-transition: all 1s ease; -o-transition: all 1s ease; -ms-transition: all 1s ease; transition: all 1s ease; } .post img:hover { -webkit-filter: brightness(100%); } Rotate Image 360 deg. On Hover This is really cool effect. It will make your image to rotate with little zoom effect. To make it more beautiful I have added little shadow on hover. It will completely change your image appearance on hover. Give it a try or see the demo of this image below. If you like it than copy the CSS code given below this image and click on installing instruction to know how to add this hover effect on blogger. Hover Effect On Image For Blogger .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 { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; transition: all 0.5s ease; padding: 4px; background: #eee; background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #ddd), color-stop(0.5, #c0c0c0), to(#aaa)); background: -moz-linear-gradient(top, #eee, #ddd 50%, #c0c0c0 50%, #aaa); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 0 3px rgba(0,0,0,.7); -moz-box-shadow: 0 0 3px rgba(0,0,0,.7); box-shadow: 0 0 3px rgba(0,0,0,.7); -moz-transform: scale(1.2) rotate(-350deg); -webkit-transform: scale(1.2) rotate(-350deg); -o-transform: scale(1.2) rotate(-350deg); -ms-transform: scale(1.2) rotate(-350deg); transform: scale(1.2) rotate(-350deg); -webkit-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1); -moz-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1); box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1); } Rotate and Spin Effect Here is another effect for images which is mixture of rotate and spin effect. To make it more beautiful I have added some background color when hovered on image. To see the demo of this effect just hover your mouse on the images of recent posts. Alternatively you can see the Demo of this image hover effect for Blogger in the image given below. And if you like this image hover effect than copy the CSS code below and add to your CSS area of your Template by following the steps given below the CSS. Image Hover Effects For Blogger .post img:hover { opacity: 1; -moz-transform: scale(1.2) rotate(-350deg); -webkit-transform: scale(1.2) rotate(-350deg); -o-transform: scale(1.2) rotate(-350deg); -ms-transform: scale(1.2) rotate(-350deg); transform: scale(1.2) rotate(-350deg); -webkit-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832; -moz-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832; box-shadow: 0 0 20px #292832, inset 0 0 20px #292832; webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; rgba(0, 0, 0, .4); -o-transition: all 0.8s ease-out; -webkit-transition: all 0.8s ease-out; -ms-transition: all 0.8s ease-out; transition: all 0.8s ease-out; } These were the 8 cool and interesting image hover effects for Blogger. I will keep updating with the latest effects. Hope you find your desired effect for your blog or site. If you face any problem than feel free to ask me.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRmlk1POHjxPIJUV64qL4ANRnWxl9PNlXjB628kysWvjiQK0Xbm8-oiEWI-Q8yCOtQYiajDMPc0w3OTmxjekFJ3DsdQloGsG1QbDhA_2JQeIX4vNmxWWvqFY7K4g0GxdN_ookT7Tr7gxg/s320/hover-effect-on-image.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRmlk1POHjxPIJUV64qL4ANRnWxl9PNlXjB628kysWvjiQK0Xbm8-oiEWI-Q8yCOtQYiajDMPc0w3OTmxjekFJ3DsdQloGsG1QbDhA_2JQeIX4vNmxWWvqFY7K4g0GxdN_ookT7Tr7gxg/s72-c/hover-effect-on-image.png
SolutionRider- One Stop Solution for Notes, Exams Prep, Jobs & Technical Blogs.
https://thesolutionrider.blogspot.com/2017/10/easy-image-hover-effects-for-blogger.html
https://thesolutionrider.blogspot.com/
https://thesolutionrider.blogspot.com/
https://thesolutionrider.blogspot.com/2017/10/easy-image-hover-effects-for-blogger.html
true
6820083649286484786
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy