Hiện thị phần trăm khi cuộn trang

Với thủ thuật này thì khi cuộn trang - kéo xuống dưới thì sẽ có một số đếm chỉ số phần trăm trang đã cuộn được nằm ở ngay con cuộn. Hôm nay mình sẽ hướng dẫn bạn làm điều đó - Lâu lắm rồi mình mới viết thêm một bài về thiết kế Blogger.

#Thêm CSS

1. Đăng nhập Blogger
2. Mẫu > Chỉnh sửa HTML
3. Tìn thẻ ]]></b:skin>
4. Dán code dưới vào trên hoặc trước thẻ mà bạn vừa tìm
#scroll {
  display:none;
  position:fixed;
  top:0;
  right:15px;
  z-index:500;
  padding:3px 8px;
  background-color:#369fcf;
  color:#fff;
  border-radius:3px;
  font-size:14px;  
}
#scroll:after {
  content: " ";
  position: absolute;
  top:50%;
  right:-10px;
  height:0;
  width:0;
  margin-top:-6px;
  border:6px solid transparent;
  border-left-color:#369fcf;
}

#Thêm Script

1. Tìm thẻ </body>
2. Dán code dưới vào trên thẻ mà bạn vừa tìm
<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(600);
    if (scrollTimer !== null) {
        clearTimeout(scrollTimer);
    }
    scrollTimer = setTimeout(function() {
        $('#scroll').fadeOut(600);
    }, 1000);
});
//]]>
</script>
3. Lưu mẫu lại và xem kết quả

Comments