This trick allows your images to some transparency (Not all Images only specified images). when your mouse over on image it will turn to no transparent will make hover effect.
I am giving three types of image hover effects
- CSS Opacity Effect
- CSS Border Effect
- jQuery Fading Effect
Watch Live Demo here
HOW TO ADD IMAGE HOVER EFFECT TO BLOGGER?
CSS OPACITY EFFECT
- Login to Blogger Dashboard
- Go to Design And select Edit HTML tab
- And Search
]]></b:skin>
tag - Add bellow CSS code just before it
a.thumbopacity img { filter:alpha(opacity=50); -moz-opacity: 0.5; opacity: 0.5; -khtml-opacity: 0.5; } a.thumbopacity:hover img { filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0; -khtml-opacity: 1.0; }
- Save your template.
Now turn your Image links to hover effect.
Your Normal code to create link with image like bellow
<a href="http://www.way2blogging.org/" ><img border="0" src=".../sample.jpg" /></a>
Define a class of class=”thumbopacity” to your Normal code Then modified code is bellow
<a href="http://www.way2blogging.org/" class="thumbopacity" ><img border="0" src=".../sample.jpg" /></a>
CSS BORDER EFFECT
- Login to Blogger Dashboard
- Go to Design And select Edit HTML tab
- And Search
]]></b:skin>
tag - Add bellow CSS code just before it
.thumbborder img{ border: 2px solid #ccc; } .thumbborder:hover img{ border: 2px solid navy; } .thumbborder:hover{ border-color: red; }
- Save your template.
Now turn your Image links to hover effect.
Your Normal code to create link with image like bellow
<a href="http://www.way2blogging.org/" ><img border="0" src=".../sample.jpg" /></a>
Define a class of class=”thumbborder” to your Normal code Then modified code is bellow
<a href="http://www.way2blogging.org/" class="thumbborder" ><img border="0" src=".../sample.jpg" /></a>
JQUERY FADING EFFECT
- Login to Blogger Dashboard
- Go to Design And select Edit HTML tab
- And Search
]]></b:skin>
tag - Add bellow JavaScripts just before ita.Add jQuery script bellow (Skip this step if you already having jQuery script)
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js' type='text/javascript'></script>
b.Add this JavaScript before </head> tag<script type="text/javascript"> $(document).ready(function() { $(".thumbs img").fadeTo("slow", 0.6); $(".thumbs img").hover(function() { $(this).fadeTo("slow", 1.0); }, function() { $(this).fadeTo("slow", 0.6); }); }); </script>
- Save your template.
Now turn your Image links to hover effect.
Your Normal code to create link with image like bellow
<a href="http://www.way2blogging.org/" ><img border="0" src=".../sample.jpg" /></a>
Define a class of class=”thumbs” to your Normal code Then modified code is bellow
<a href="http://www.way2blogging.org/" class="thumbs" ><img border="0" src=".../sample.jpg" /></a>
(Source: Way2Blogging.org)