-
Notifications
You must be signed in to change notification settings - Fork 8
/
demo.html
73 lines (72 loc) · 5.21 KB
/
demo.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
<html>
<head>
<title>slimScroller.js Demo</title>
<!-- These styles are not required for the actual plugin. Just for the demo. -->
<style>
body{
padding: 0;
margin: 0;
}
p{
font-family: sans-serif;
line-height: 25px;
}
</style>
</head>
<body>
<button onclick='slimScroller.scroll(300)'>Scroll to 300px</button>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<a href='#testPar'>Scroll to a paragraph via an anchor-tag.</a>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<button onclick='slimScroller.scroll("p:last-of-type")'>Scroll to last paragraph selector</button>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p id='testPar'>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<p>This is a line of text that does not serve any actual purpose but to waste some of your energy.</p>
<button onclick='slimScroller.scroll(document.querySelector("button:first-of-type"))'>Scroll to first button JS-element</button>
<script src='src/slimScroller.full.js'></script>
<script>
window.addEventListener('load', function (){
return slimScroller.bind(false, function (position){
console.log('The current position is '+position);
});
});
</script>
</body>
</html>