-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arctic Freezer</title>
<!-- Import the css file -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- You can change 0.160.0 to any other availble Three.js version to match your requirements -->
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/"
}
}
</script>
</head>
<body>
<div id="content">
<div id="text-side">
<div class="title">Arctic Freezer</div>
<div class="description">Arctic Freezer is a visionary project blending art and environmental advocacy. Its centerpiece is a piece of Arctic ice, encapsulated in a glass bell, symbolizing the fragility of Earth's ecosystems. Inside the ice is a unique artifact: a human ear made from biodegradable collagen, containing DNA-encoded manifest for Earth. This represents the need to listen and respond to our planet's urgent messages.
<br>
The project's hardware ingeniously keeps the ice perpetually frozen, mirroring the challenge of preserving our changing world. Arctic Freezer serves as a stark reminder and an educational tool, urging viewers to reflect on their relationship with nature and advocate for sustainability and conservation. This exhibit is not just visually striking, but carries a profound message, emphasizing the importance of protecting our planet.</div>
<div class="parttitle">Manipulation:</div>
<div class="partdescription">Hold right click for moving the camera, hold left click for rotating the camera, click on a part so see it's name and description and move it</div>
<button id="reset-view" class="button-34" >Reset View</button>
</div>
<div id="canvas-side">
<canvas id="canvas"></canvas>
<div class="credits">Gauthier Gendreau X IFT</div>
</div>
</div>
<!-- The import should happen after creating the other HTML elements since you will be importing them -->
<script type="module" src="./script.js"></script>
</body>
</html>