-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
88 lines (78 loc) · 2.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>AnimeScape</title>
<link rel="icon" href="./public/img/cursor.svg">
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="menu">
<div id="img_container">
<div id="starry_night_bg"></div>
</div>
<div id="content_container">
<div id="content">
<div class="title">
<h1>AnimeScape: A 3D Odyssey of Anime Imagery</h1>
</div>
<div class="title-info">
<p>Step into the realm of immersive 3D anime art.</p>
<p>
Embark on a journey through virtual gallery halls adorned with captivating anime imagery and quotes.
</p>
<p>
Crafted by Sarathi, driven by a fervent passion for merging art and technology, this experience invites you
to explore the vibrant world of anime like never before."
</p>
</div>
<div id="play_button">
<p>EXPLORE ART</p>
</div>
<div id="about_button_container">
<button id="about_button">ABOUT</button>
</div>
</div>
</div>
</div>
<div id="about-overlay">
<button id="close-about">X</button>
<h1>About the 3D Art Gallery</h1>
<p>
Step into a realm where anime art transcends the boundaries of time and space. Our 3D Anime Gallery invites you to
embark on a journey through its virtual corridors, each adorned with captivating images waiting to be explored.
</p>
<p>
As you wander through the intricately crafted halls, prepare to be enchanted by the stories behind each anime
artwork, unraveling their mysteries and discovering their significance in the world of anime.
</p>
<p>
Crafted with meticulous detail and a fervent dedication to merging art and technology, our gallery stands as a
testament to the vision of its creator, Sarathi, whose passion for innovation knows no bounds. Welcome to a world
where creativity knows no limits, and where every corner holds a new adventure in anime artistry."
</p>
</div>
<div id="info-panel">
<div id="info-header">
<h3>Controls</h3>
<button id="toggle-info">Hide</button>
</div>
<div id="info-content">
<p><b>W/A/S/D:</b> Move around</p>
<p><b>Mouse:</b> Look around</p>
<p><b>Space:</b> Toggle pointer lock</p>
<p><b>M:</b> Show Menu</p>
<p><b>Enter:</b> Start exploration</p>
<p><b>Esc:</b> Stop exploration</p>
<p><b>G:</b> On Music</p>
<p><b>P:</b> Off Music</p>
</div>
</div>
<div id="audio_controls">
<button id="start_audio">On Music</button>
<button id="stop_audio">Off Music</button>
</div>
<div id="anime-info"></div>
<script type="module" src="main.js"></script>
</body>
</html>