forked from SilverHoodCorp/polar-bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-scroll.html
76 lines (62 loc) · 3.12 KB
/
test-scroll.html
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<style>
#scroller {
height: 100px;
overflow: auto;
}
</style>
</head>
<body>
<div id="main">
this is outside of the inner scroller
<div id="scroller">
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
this should be some super long text and should be scrolled.
</div>
</div>
<script>
window.addEventListener('scroll', () => console.log('window scroll'), {capture: true});
//
// const scroller = document.getElementById('scroller');
// scroller.addEventListener('scroll', () => console.log('scroller scrolled'));
// document.addEventListener('scroll', () => console.log('document scroll'));
</script>
</body>
</html>