Five Beautiful Mouse Hover Effects For Blogger Images

Views:
Friends, In this post i share about five different mouse hover effects. You never see this type mouse hover effects in past. This is an awesome mouse hover effect like a water drop movement. This mouse hover effect only for blogger images. It made up with pure CSS code. Now i share different type mouse hover effect here. You can add these all mouse hover effect in one blog. For that you just need to install CSS codes and HTML codes inside your blog. This mouse hover effect also have a peeling effect and a small shadow effect when we try to move mouse over a image. Five different mouse hover effects make a beautiful feeling and it will surprise all visitors. This image mouse hover effect have two parts. One is CSS code and Other is HTML code. CSS code contain all properties of  image mouse hover. HTML code only for apply that effect to web page. If you like to install this effect on your blog. Please follow below instruction carefully.
Five Beautiful Mouse Hover Effect For Blogger Images (Internet Explora)

Instructions

CSS code Installation

  • Log in your Blogger account.
  • Select Template option.
  • Click on Edit HTML.
  • Find (CTRL+F) ]]></b:skin> tag.
  • Copy CSS code and paste it before ]]></b:skin> tag. (Please select one CSS code from below, Otherwise It will crash.)
  • Save your Template.


Mouse Hover Effects


Style 1.



CSS code:


.post-body img {
border:0;
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.post-body img:hover {
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 50%; /* Rounded border */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}



Style 2.



CSS code:


.post-body img{
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 50%; /* Rounded border */
border:0;
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.post-body img:hover {
box-shadow: 0; /* With this we remove the shadow (value 0) */
border-radius: 0; /* This removes the border roundness (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

 

Style 3.



CSS code:


.post-body img{
background:#FFF; /* background color around the image */
padding:15px; /* space between border and image */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.post-body img:hover {
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 0% 50%; /* Rounded border */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

 

Style 4.



CSS code:


.post-body img{
background:#FFF; /* the background color around the image */
padding:15px; /* The Space Between Border and Image */
border-radius: 50% 0; /* Rounded border */
box-shadow: 0px 0px 15px #000; /* Shadow */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.post-body img:hover {
border-radius:0; /* This removes the border roundness (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

 

Style 5.



CSS code:


.post-body img {
border-radius: 45% / 20%; /* Rounded border */
box-shadow: 0px 0px 15px #000; /* Shadow */
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.post-body img:hover {
border-radius: 0; /* This removes the roundness of border (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

 

  • Save Your Template.

Now your all blogger images will became stylish mouse hover effect.



If you want to add Whole image hover effect in one post (Don’t need above step)

Log in your Blogger account.

  • Go to Post option.
  • Edit post.
  • Now Post editing interface appear.
  • Click on HTML Tab.

Click on HTML Tab (Internet Explora)

  • Copy and paste below CSS code in HTML edit interface.

 

<style type="text/css">   
.hoverimgone {
border:0;
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.hoverimgone:hover {
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 50%; /* Rounded border */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}
.hoverimgtwo {
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 50%; /* Rounded border */
border:0;
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.hoverimgtwo:hover {
box-shadow: 0; /* With this we remove the shadow (value 0) */
border-radius: 0; /* This removes the border roundness (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.hoverimgthree {
background:#FFF; /* background color around the image */
padding:15px; /* space between border and image */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.hoverimgthree:hover {
box-shadow: 0px 0px 15px #000; /* Shadow */
border-radius: 0% 50%; /* Rounded border */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.hoverimgfour {
background:#FFF; /* the background color around the image */
padding:15px; /* The Space Between Border and Image */
border-radius: 50% 0; /* Rounded border */
box-shadow: 0px 0px 15px #000; /* Shadow */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.hoverimgfour:hover {
border-radius:0; /* This removes the border roundness (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}

.hoverimgfive {
border-radius: 45% / 20%; /* Rounded border */
box-shadow: 0px 0px 15px #000; /* Shadow */
padding:0;
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
}
.hoverimgfive:hover {
border-radius: 0; /* This removes the roundness of border (value 0) */
-moz-transition: all 1s;
-webkit-transition: all 1s;
-o-transition: all 1s;
cursor:pointer;
}
</style>

 

  • Then Copy below HTML code and paste at same HTML interface. (Select One Style from below)

Style 1:

<img class="hoverimgone" src=" YOUR-IMAGE-URL "/>

Style 2:

 

<img class="hoverimgtwo" src=" YOUR-IMAGE-URL "/>

Style 3:

 

<img class="hoverimgthree" src=" YOUR-IMAGE-URL "/>

Style 4:

 

<img class="hoverimgfour" src=" YOUR-IMAGE-URL "/>

Style 5:

 

<img class="hoverimgfive" src=" YOUR-IMAGE-URL "/>



Change RED color with your Image URL.


  • Save or Publish your Post.

  • Done

Leave a comment below if you have any problem with this mouse hover effect…

Five Beautiful Mouse Hover Effects For Blogger Images Five Beautiful Mouse Hover Effects For Blogger Images Reviewed by Gaint Hackers on 05:07 Rating: 5

No comments:

Powered by Blogger.