-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
51 lines (44 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PaperStack</title>
<script
src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI="
crossorigin="anonymous"></script>
<script src="./paperstack.js"></script>
<link rel="stylesheet" href="./paperstack.css" />
<style>
h2 {
text-align: center;
user-select: none;
}
h2 a {
text-decoration: none;
color: gray;
cursor: pointer;
}
</style>
</head>
<body>
<script>
$(document).ready(function() {
var stack = $('.stack').paperstack({});
$('#next').click(stack.next);
$('#prev').click(stack.previous);
});
</script>
<h2>
<a id="prev"><</a>
<a id="next">></a>
</h2>
<div class="stack">
<div class="sheet">Page 1</div>
<div class="sheet">Page 2</div>
<div class="sheet">Page 3</div>
<div class="sheet">Page 4</div>
<div class="sheet">Page 5</div>
</div>
</body>
</html>