Files
bbc-young-reporter/_site/js/top-scroll-button.js
Matthew Grove 3b67b7a5d7 Update branding & home page
Add BBC Young Reporter branding & update positioning of articles on home 
page
2019-03-04 21:25:35 +00:00

14 lines
349 B
JavaScript

$(window).scroll(function() {
if ($(this).scrollTop() >= 55) {
$('.top-scroll-button').fadeIn(500);
}
if ($(this).scrollTop() < 55) {
$('.top-scroll-button').fadeOut(500);
}
});
function scrollUp() {
$('body, html, .mdc-drawer-app-content, #main-content, .mdc-top-app-bar--short-fixed-adjust').animate({
scrollTop: 0
}, 500);
}