blob: 0dfcef454d7922a94ac9b3215d7174cd5f087097 (
plain)
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>prevnext1</title>
<style>
* { margin: 0; padding: 0; }
body { font-family: sans-serif; }
button { font-size: 20px; }
</style>
</head>
<body>
<h1>prevnext1</h1>
<canvas></canvas>
<div>
<button id="previous" onclick="selectPrevious()">Previous</button>
<button id="next" onclick="selectNext()">Next</button>
</div>
<script src="../request-animation-frame.js"></script>
<script src="cell.js"></script>
<script src="slider.js"></script>
<script src="demo.js"></script>
</body>
</html>
|