-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·57 lines (54 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
executable file
·57 lines (54 loc) · 1.48 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html>
<head>
<title>Gardencraft</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
.Menu-hidden{
display: none;
position: absolute;
padding: 10px;
border-radius: 5px;
float: left;
}
.Particle-menu{
display: none;
opacity: 0.7;
border-radius: 5px;
position: absolute;
background: #444;
color: white;
padding: 10px;
margin: 10px;
margin-top: 70px;
height: auto;
width: auto;
overflow: auto;
}
</style>
</head>
<body>
<div class="Menu-hidden">
<button type="button" class="btn btn-default" aria-label="Left Align">Palette</button>
</div>
<div class="Particle-menu">
<h1> <em><strong>Choose Wisely</strong></em></h1>
<ul id = "Flowers">
<li><a href="#">Rose</a></li>
<li><a href="#">Daffodil</a></li>
<li><a href="#">Anemone</a></li>
<li><a href="#">Carnation</a></li>
<li><a href="#">Stock</a></li>
</ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/three.min.js"></script>
<script src="js/Tween.js"></script>
<script src="js/FirstPersonControls.js"></script>
<script src="js/TrackballControls.js"></script>
<script src="JS/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>