Created
October 23, 2016 21:17
-
-
Save 0632347878/914cf3f6593297feeba9384a9de77c60 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Мы можем использовать JavaScript чтобы создать иллюзию перелистывания страниц. | |
$('nav').on('click', function() { | |
if ( $(this).hasClass('down') ) { | |
var movePos = $(window).scrollTop() + $(window).height(); | |
} | |
if ( $(this).hasClass('up') ) { | |
var movePos = $(window).scrollTop() - $(window).height(); | |
} | |
$('html, body').animate({ | |
scrollTop: movePos | |
}, 1000); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment