aboutsummaryrefslogtreecommitdiff
path: root/static/scroll.js
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-05-07 13:50:26 +0200
committerFlorian Dold <florian@dold.me>2021-05-07 13:50:26 +0200
commitb3dd9489f04385fff095a85de658ab746574d23b (patch)
tree3e2cbe605f8c6ed9d73aa86e6b31e2021e8f70b1 /static/scroll.js
parent8a4a175424109088884be1c4785a2eb793323b29 (diff)
downloadwww-b3dd9489f04385fff095a85de658ab746574d23b.tar.gz
www-b3dd9489f04385fff095a85de658ab746574d23b.zip
restructure to work with current site generator
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});