EN
JavaScript - scroll stop event
12 points
In this short article we would like to show how to detect scroll stop event (scroll end event).
Some web browser introduced in 2023 scrollend
event, so still there is needed some legacy solution.
Quick solution:
xxxxxxxxxx
1
element.addEventListener('scrollend', (event) => {
2
// ...
3
});
Note: we can use
element.onscrollend = (event) => { /* ... */ };
construction also.
Legacy solution for the problem is to use some trick: do some logic when scroll event doesn't occur few milliseconds after appeared.
xxxxxxxxxx
1
2
<html>
3
<body style="height: 200px;">
4
<div style="background: silver; height: 600px;">
5
Scroll me up, down, up down and stop!
6
</div>
7
<script>
8
9
// Reusable function:
10
11
function createScrollStopListener(element, callback, timeout) {
12
if (timeout == null) {
13
timeout = 200; // default 200 ms
14
}
15
var removed = false;
16
var handle = null;
17
var handleScroll = function() {
18
if (handle) {
19
clearTimeout(handle);
20
}
21
handle = setTimeout(callback, timeout);
22
};
23
element.addEventListener('scroll', handleScroll);
24
return function() {
25
if (removed) {
26
return;
27
}
28
element.removeEventListener('scroll', handleScroll);
29
if (handle) {
30
clearTimeout(handle);
31
}
32
removed = true;
33
};
34
}
35
36
// Example usage:
37
38
createScrollStopListener(window, function() { // <div> elements based example is in the next section
39
console.log('window: onscrollstop');
40
});
41
42
</script>
43
</body>
44
</html>
In this section, you can find scroll stop event that is connected to div
elements.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
body {
7
height: 210px;
8
}
9
10
div.container {
11
background: silver;
12
height: 100px;
13
overflow-y: scroll;
14
}
15
16
div.content {
17
background: gold;
18
height: 1000px;
19
}
20
21
</style>
22
<script>
23
24
// Reusable function:
25
26
function createScrollStopListener(element, callback, timeout) {
27
if (timeout == null) {
28
timeout = 200; // default 200 ms
29
}
30
var removed = false;
31
var handle = null;
32
var handleScroll = function() {
33
if (handle) {
34
clearTimeout(handle);
35
}
36
handle = setTimeout(callback, timeout);
37
};
38
element.addEventListener('scroll', handleScroll);
39
return function() {
40
if (removed) {
41
return;
42
}
43
element.removeEventListener('scroll', handleScroll);
44
if (handle) {
45
clearTimeout(handle);
46
}
47
removed = true;
48
};
49
}
50
51
</script>
52
</head>
53
<body>
54
<div id="container-1" class="container">
55
<div class="content">Scroll me up, down, up down and stop!</div>
56
</div>
57
<br />
58
<div id="container-2" class="container">
59
<div class="content">Scroll me up, down, up down and stop!</div>
60
</div>
61
<script>
62
63
// Example usage:
64
65
var container1 = document.querySelector('#container-1');
66
var container2 = document.querySelector('#container-2');
67
68
createScrollStopListener(container1, function() {
69
console.log('container-1 element: onscrollstop');
70
});
71
72
createScrollStopListener(container2, function() {
73
console.log('container-2 element: onscrollstop');
74
});
75
76
</script>
77
</body>
78
</html>