mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
14 lines
No EOL
276 B
JavaScript
14 lines
No EOL
276 B
JavaScript
var btn = $('#back-to-top');
|
|
|
|
$(window).scroll(function() {
|
|
if ($(window).scrollTop() > 300) {
|
|
btn.addClass('show');
|
|
} else {
|
|
btn.removeClass('show');
|
|
}
|
|
});
|
|
|
|
btn.on('click', function(e) {
|
|
e.preventDefault();
|
|
$('html, body').animate({scrollTop:0}, '300');
|
|
}); |