-
Notifications
You must be signed in to change notification settings - Fork 7
/
view-3d-garden.html
42 lines (40 loc) · 1.72 KB
/
view-3d-garden.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chance the Gardener - View 3D Garden</title>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="./node_modules/bootstrap-icons/font/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="./style.css">
<script src="./script.js"></script>
<script src="./view-3d-garden.js"></script>
</head>
<body>
<div class="container-fluid">
<button class="btn btn-back mt-2" onclick="changePage('3d-garden-menu.html')">Back</button>
<header class="text-center mb-5">
<h1><img src="img/Chance-the-Gardener_logo_icon.png" class="app-logo col-1 me-4">Chance the Gardener</h1>
</header>
<div class="d-grid gap-2 col-sm-10 col-md-8 mx-auto mt-3">
<div class="d-flex mx-auto">
<i class="bi bi-info-circle-fill col-1 align-self-center ms-2" style="font-size: 2rem;"></i>
<div class="d-flex flex-column ms-2">
<p>To view 3D gardens, an external 3D garden viewer program will be launched in a new window.</p>
<p>Chance the Gardener will remain open upon launching and/or exiting the 3D garden viewer.</p>
</div>
</div>
</div>
<div class="d-grid gap-2 col-sm-4 col-md-3 col-xl-2 mx-auto mt-5">
<button id="launch-viewer-btn" class="btn" onclick="launchGardenViewer()"><i class="bi bi-play-fill"></i> Launch 3D garden viewer</button>
</div>
<div id="viewer-launch-spinner" class="d-flex justify-content-center mt-5 d-none">
<div class="spinner-border" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div id="viewer-launch-msg" class="row mt-3 d-none">
<p class="text-center">Garden viewer launched, please wait...</p>
</div>
</div>
</body>
</html>