FabrikaHradekTour/index.html

21 lines
634 B
HTML
Raw Normal View History

2023-05-16 12:29:52 +02:00
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./res/style.css">
2023-05-16 12:29:52 +02:00
<script src="./res/script.js"></script>
<title>Fabrika Hrádek Tour</title>
</head>
<body onload="load_panorama()">
<div id="panorama_div">
<canvas id="panorama">This browser doesn't seem to support canvas. sorry idk</canvas>
</div>
2023-05-16 21:51:29 +02:00
<button onclick="turn_left()">Turn Left</button>
2023-05-17 10:51:32 +02:00
<button onclick="turn_right()">Turn Right</button>
2023-05-16 12:29:52 +02:00
</body>
</html>