mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
17 lines
386 B
JavaScript
17 lines
386 B
JavaScript
$(document).ready(function() {
|
|
|
|
var TO_TOP_MIN = 50;
|
|
var TO_TOP_SPEED = 500;
|
|
var TO_TOP_POS = 0;
|
|
$(window).scroll(function () {
|
|
if ($(this).scrollTop() > TO_TOP_MIN) {
|
|
$('.jump-to-top').fadeIn();
|
|
} else {
|
|
$('.jump-to-top').fadeOut();
|
|
}
|
|
});
|
|
$(".jump-to-top").click(function() {
|
|
$("html").animate({scrollTop: TO_TOP_POS}, TO_TOP_SPEED)
|
|
});
|
|
});
|