aboutsummaryrefslogtreecommitdiff
path: root/static/scroll.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/scroll.js')
-rw-r--r--static/scroll.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/static/scroll.js b/static/scroll.js
new file mode 100644
index 00000000..1180588a
--- /dev/null
+++ b/static/scroll.js
@@ -0,0 +1,12 @@
1$(window).scroll(function() {
2 if ($(this).scrollTop() >= 50) {
3 $('#jump-top').fadeIn(200);
4 } else {
5 $('#jump-top').fadeOut(200);
6 }
7});
8$('#jump-top').click(function() {
9 $('html').animate({
10 scrollTop : 0
11 }, 500);
12});