-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.html
60 lines (53 loc) · 1.88 KB
/
clock.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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Clock Dreamer</title>
<link rel="stylesheet" href="src/ClockGame/clock.css">
</head>
<body>
<ul id="messageList" style="width: 0; height: 100vh">
<!-- Messages will be added here -->
</ul>
<div id="tutorial-canvas" class="tutorial-canvas">
<div id="tutorial-container" class="tutorial-container">
<button id="prev-btn" class="nav-btn">←</button>
<div class="tutorial-content">
<img id="tutorial-image" src="data/tutorial/clock/intro.png" alt="Tutorial Step 1" />
<p id="tutorial-text">Step 1: Learn how to navigate!</p>
</div>
<div class="tutorial-nav">
<div id="dot-indicator" class="dot-indicator">
<span id="dot-1" class="dot active"></span>
<span id="dot-2" class="dot"></span>
<span id="dot-3" class="dot"></span>
<span id="dot-4" class="dot"></span>
</div>
</div>
<button id="next-btn" class="nav-btn">→</button>
<button id="close-btn" class="close-btn">X</button>
</div>
</div>
<div id="loadingScreen">
<div id="loadingText">Loading...</div>
<div id="progressBar">
<div id="progressBarFill"></div>
</div>
</div>
<div id="operationPanel">
<button id="tutorialButton">Tutorial</button>
</div>
<div id="container"></div>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/[email protected]/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/"
}
}
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script>
<script src="src/ClockGame/clock.js" type="module"></script>
</body>
</html>