-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathscroll.js
50 lines (42 loc) · 1.33 KB
/
scroll.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
window.onscroll = () => handleScroll();
const scrollButton = document.getElementById("backToTop");
function handleScroll() {
const scrollTop =
document.body.scrollTop || document.documentElement.scrollTop;
scrollButton.style.display = scrollTop > 150 ? "block" : "none";
}
scrollButton.addEventListener("click", () => {
scrollButton.classList.add("startscrolling");
smoothScrollTo(0, 1250, () => {
scrollButton.classList.remove("startscrolling");
});
});
scrollButton.addEventListener("mousedown", () => {
scrollButton.classList.add("mousedown");
});
scrollButton.addEventListener("mouseup", () => {
scrollButton.classList.remove("mousedown");
});
function smoothScrollTo(to, duration, callback) {
const start = document.documentElement.scrollTop,
change = to - start,
increment = 20;
let currentTime = 0;
function animateScroll() {
currentTime += increment;
const val = Math.easeInOutQuad(currentTime, start, change, duration);
document.documentElement.scrollTop = val;
if (currentTime < duration) {
setTimeout(animateScroll, increment);
} else if (callback && typeof callback === "function") {
callback();
}
}
animateScroll();
}
Math.easeInOutQuad = (t, b, c, d) => {
t /= d / 2;
if (t < 1) return (c / 2) * t * t + b;
t--;
return (-c / 2) * (t * (t - 2) - 1) + b;
};