mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
499 B
HTML
20 lines
499 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Bus Progress</title>
|
|
<link rel="stylesheet" href="drive.css" />
|
|
<script src="drive.js"></script>
|
|
</head>
|
|
<body>
|
|
<canvas id="road" width="1920" height="100"></canvas>
|
|
<label id="scale">
|
|
Scale:
|
|
<input id="scale-input" type="number" value="1" min="0.1" step="0.1" />
|
|
</label>
|
|
<p id="scale-disclaimer">
|
|
Scale modifications will be applied on the next update, which occur every 10 seconds.
|
|
</p>
|
|
</body>
|
|
</html>
|