/ Published in: jQuery
Esto permite hacer un suave scroll hacia el top de la página.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('#toTop').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); return false; }); $(window).scroll(function(){ if ($(window).scrollTop() > 0) $('#toTop').fadeIn('fast', function(){}); if ($(window).scrollTop() == 0) $('#toTop').fadeOut('fast', function(){}); });