Caranya adalah sebagai berikut :
1. Login ke Akun Blogger anda masing-masing.
2. Klik Design or Rancangan, kemudian pilih Edit HTML
3. Centang (Expand Widget Template)
4. Untuk keamanan lebih baik kita (Download Template Lengkap)
5. Gunakan (Ctrl+F) or (Alt+E+F) untuk memudahkan pencarian
6. Cari kode ]]></b:skin>
7. Dan Simpan kode berikut diatasnya :
8. Selanjutnya simpan kode berikut tepat diatas kode </head> :/* ---------------
Zoom efect with jquery
---------------------------------- */
ul.jzoom {
float: left;
list-style: none;
margin: 0;
padding: 10px;
width: 360px;
}
ul.jzoom li {
margin: 0; padding: 5px;
float: left;
position: relative; /* Set the absolute positioning base coordinate */
width: 110px;
height: 110px;
}
ul.jzoom li img {
width: 100px; height: 100px; /* Set the small jzoomnail size */
-ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */
border: 1px solid #ddd;
padding: 5px;
background: #f0f0f0;
position: absolute;
left: 0; top: 0;
}
ul.jzoom li img.hover {
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgXmP98xEmNVcCvtPzR80Wx-vFr1Pqfr2sRUlWrrsTlYONjpuVE6ZNME-oS-D2Mqu4mgEhZq1VCKD-P0kUVPdizW1fke84QX5t_VI4dlF4O_9uP2IiiKtWqRs-CdxcuE5RO_F0w646ApyGs/) no-repeat center center;
}
9. Cara Pemasangannya :<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/><script type='text/javascript'> $(document).ready(function(){ $("ul.jzoom li").hover(function() {$(this).css({'z-index' : '10'});
$(this).find('img').addClass("hover").stop()
.animate({
marginTop: '-110px',marginLeft: '-110px',
top: '50%', left: '50%',
width: '174px',height: '174px',
padding: '20px'}, 200);
} , function() {
$(this).css({'z-index' : '0'});
$(this).find('img').removeClass("hover").stop()
.animate({
marginTop: '0',marginLeft: '0',
top: '0',left: '0',
width: '100px', height: '100px',
padding: '5px' }, 400);
}); $("ul.jzoom li a").click(function() {
var mainImage = $(this).attr("href"); //Find Image Name
$("#main_view img").attr({ src: mainImage });
});
});
</script>
<ul class="jzoom">NB: silahkan anda simpan di gadget ataupun di postingan sesuai kebutuhan
<li><a href="#"><img alt="Description" height="150" src="URL GAMBAR ANDA" width="200" /></a></li>
<li><a href="#"><img alt="Descriptions" height="150" src="URL GAMBAR ANDA" width="200" /></a></li>
<li><a href="#"><img alt="Description" height="150" src="URL GAMBAR ANDA" width="200" /></a></li>
</ul>