Kali ini saya akan membuat tutorial bagaimana untuk membuat back to top secara smooth.
Langkah 1
1. Buka Edit HTML2. Masukan script jquery berikut diatas </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(function(){
$('a[href*=#top]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
});
//]]>
</script>
<!-- end scrolltop -->
Langkah 2
1. cari kode <body> dan ubah menjadi <body id='top'>
2. Masukkan kode HTML berikut sebelum </body>
<div id='goingtop'>
<a href='#top' title='Top'><img src='http://i627.photobucket.com/albums/tt351/testemplates/goto_top.gif' style='right:20px; bottom:20px; position: fixed;'/></a></div>
Info:-
- Anda dapat merubah gambar image dan kawasan sesuai mengikut selera anda.
6. Akhir sekali,klik save tamplate
0 Ulasan