Berikut Cara Membuat Presentase Scrollbar DiBlog
1.masuk blogger sobat
2.klik template > edit html
3.cari kode ]]></b:skin>
4.lalu copy kode script di bawah ini ,paste di atas ]]></b:skin>
/* Scroll Persentase */
#scroll{display:none;position:fixed;top:0;right:5px;z-index:500;padding:3px 8px;background-color:#4B4B4B;color:#FFF;border-radius:3px}
#scroll:after{position:absolute;top:50%;right:-8px;height:0;width:0;margin-top:-4px;border:4px solid transparent;border-left-color:#4B4B4B}
Keterangan
kode 5px : jarak dari scrollbar
kode 3px 8px : merupakan tinggi lebar scroll
kode yang berwarna #4B4B4B adalah warna background
kode yang berwarna #FFF warna huruf pada kota persen
5. cari kode </body>
6.copy kode di bawah ini lalu paste di atas kode </body>
<div id='scroll'/>
7.cari kode </body>
8.copy kode di bawah ini , paste di tepat dibawah kode </body>
<script type='text/javascript'>
/*<![CDATA[*/
var scrollTimer = null;
$(window).scroll(function() {
var viewportHeight = $(this).height(),
scrollbarHeight = viewportHeight / $(document).height() * viewportHeight,
progress = $(this).scrollTop() / ($(document).height() - viewportHeight),
distance = progress * (viewportHeight - scrollbarHeight) + scrollbarHeight / 2 - $('#scroll').height() / 2;
$('#scroll')
.css('top', distance)
.text(' (' + Math.round(progress * 100) + '%)')
.fadeIn(100);
if (scrollTimer !== null) {
clearTimeout(scrollTimer);
}
scrollTimer = setTimeout(function() {
$('#scroll').fadeOut();
}, 1500);
});
/*]]>*/</script>
9. cari kode </head>
10.copy kode ini dan paste di atas kode </head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js'/>
Mungkin Ini Saja Yang bisa saya Bagikan
No comments
Post a Comment