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
Your Normal code to create link with image like bellow
Your Normal code to create link with image like bellow
Your Normal code to create link with image like bellow
I am giving three types of image hover effects
- CSS Opacity Effect
- CSS Border Effect
- jQuery Fading Effect
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.
Your Normal code to create link with image like bellow
<a href="
http://marhbaa.blogspot.com/" ><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://marhbaa.blogspot.com/" 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.
Your Normal code to create link with image like bellow
<a href="
http://marhbaa.blogspot.com/" ><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://marhbaa.blogspot.com/" 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 it
a.Add jQuery script bellow (Skip this step if you already having jQuery script)
b.Add this JavaScript before </head> tag<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js' type='text/javascript'></script>
<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.
Your Normal code to create link with image like bellow
<a href="
http://marhbaa.blogspot.com/" ><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://marhbaa.blogspot.com/" class="thumbs" ><img border="0" src=".../sample.jpg" /></a>
Leave your Comments
Enregistrer un commentaire