-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 2.04 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>New Tab</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway|Questrial|Nothing+You+Could+Do" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<div class="intro-text">
<div id="prompt">
<p id="question" class="intro-caption">What are you thankful for today?</p>
<input id="message-input" minLength="5" maxLength="100"></input>
<div id="userQuoteText">
<p id="userQuote" class="quote"></p>
</div>
<div id="shareOptionContainer" class="tooltip">
<input type="checkbox" id="shareCheckbox" checked />
<label id="shareCheckboxVisible" style="font-size:1.1em;" for="shareCheckbox"><span>Share</span></label>
<span class="tooltiptext">Anonymously share your gratitude</span>
</div>
</div>
</div>
<div id="extension-title">
<img src= "img/009-nature.svg"/>
<span class="block-span">Gratitude Forest</span>
</div>
<div id="world"/>
<script src="js/libraries/math2.js"></script>
<script src="js/libraries/stats.js"></script>
<script src="js/libraries/three.min.js"></script>
<script src="js/libraries/geometryHelpers.js"></script>
<script src="js/libraries/tweenmax.js"></script>
<script src="js/libraries/scenecolors.js"></script>
<script src="js/libraries/orbitcontrols.js"></script>
<script src="js/libraries/custommesh.js"></script>
<script src="js/libraries/dat.gui.min.js"></script>
<script src="js/foliage.js"></script>
<script src="js/tree.js"></script>
<script src="js/particle.js"></script>
<script src="js/cloud.js"></script>
<script src="js/sky.js"></script>
<script src="js/scene.js"></script>
<script src="js/extension.js"></script>
</body>
</html>