Ohayo Minna XD
Sekarang aku akan membahas Tutorial Cara membuat Persentase Scroll Bar
Contoh nya di atas,,... :D
Langsung saja ya
~Login ke Blogger
~Pilih "Template" lalu "Edit HTML"
~Cari kode ]]></b:skin> Dengan meggunakan Ctrl + F atau bisa juga menggunakan F3
~Lalu Copy dan Pastekan Kode dibawah di atas Kode
#scroll {NB: Tulisan warna merahh di ganti dengan kode warna yang di inginkan
display: none;
position: fixed;
top: 0;
right: 20px;
z-index: 500;
padding: 3px 8px;
background-color: #eb2f58;
color: #fff;
border-radius: 3px;
}
#scroll:after {
content: " ";
position: absolute;
top: 50%;
right: -8px;
height: 0;
width: 0;
margin-top: -4px;
border: 4px solid transparent;
border-left-color: #eb2f58;
}
~Jika sudah, Pastekan Kode berikut di bawah Kode </head>
<div id='scroll'></div>~ Lalu Kode ini Pastekan di Atas 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>
Klik simpan dan lihat blog ^^
Selesai
Terimakasih
Semoga Bermanfaat ^^
Enjoy Blogging :D
0 komentar:
Posting Komentar