25 lines
658 B
HTML
25 lines
658 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>pager</title>
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="main.css" />
|
|
<link rel="stylesheet" href="w3.css" />
|
|
<script type="module" src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>pager.js</h1>
|
|
|
|
<canvas id="myCanvas" width="500" height="100" style="border:1px solid grey;">
|
|
Sorry, your browser does not support canvas.
|
|
</canvas>
|
|
|
|
<input type="number" id="speedInput" value="200" min="50" max="1000" step="50"> ms
|
|
<button id="pauseButton">Pause</button>
|
|
|
|
</body>
|
|
</html>
|