Estadísticas

Porcentaje en la barra de desplazamiento


Para hacerlo, siga estos sencillos pasos:
1. En primer lugar, guarde el código de abajo arriba ]]> </ b: skin> o </ style>
#scroll {
  display:none;
  position:fixed;
  top:0;
  right:20px;
  z-index:500;
  padding:3px 8px;
  background-color:#2187e7;
  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:#2187e7;
}

2 Guarde el código de las personas que llaman por debajo de </ head>
<div id='scroll'></div>

3 A continuación, guarde el código Javascript encima de </ 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>

y listo ya tienen su barra de porcentaje


Comentarios Facebook { }
Comentarios Blogger { 0 }