Created
September 7, 2018 08:58
-
-
Save amorkovin/a3bb0e23b3e892fce2cc2587b0667a46 to your computer and use it in GitHub Desktop.
Стрелочка наверх
This file contains hidden or 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
$('html, body').animate({scrollTop: 0}, 700); | |
}); | |
var win = $(window); | |
var up = $('#up'); | |
win.on('scroll', function() { | |
if ( win.scrollTop() > win.height() / 3 ) { | |
up.fadeIn(); | |
} else { | |
up.fadeOut(); | |
} | |
}).scroll(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment