-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnumberRoll.html
More file actions
56 lines (49 loc) · 2.04 KB
/
numberRoll.html
File metadata and controls
56 lines (49 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Retro Ball Maze Phone Number Entry</title>
<link rel="stylesheet" href="CSS/numberRoll.css">
<script type="module" src="js/numberRoll.js"></script>
</head>
<body>
<div class="container">
<h1>☎️ SUPER FUN PHONE NUMBER ENTRY! ☎️</h1>
<div class="subtitle">~*~*~ Tilt to roll the ball and collect digits! ~*~*~</div>
<!--
<div class="instructions">
<p><b>HOW TO PLAY:</b></p>
<ol>
<li>Desktop: Use the PINK JOYSTICK below to tilt the maze</li>
<li>Mobile: TILT your device to move the ball!</li>
<li>Roll the RED BALL into the NUMBERED HOLES</li>
<li>Navigate around the OBSTACLES</li>
<li>Complete your phone number (10 digits)</li>
<li>Have FUN!!! <span class="blink">★</span></li>
</ol>
</div> -->
<div class="phone-number" id="phoneDisplay">Enter your number...</div>
<div class="maze-container">
<div class="maze-inner" id="mazeInner">
<div class="ball" id="ball"></div>
<!-- walls and holes go here -->
</div>
</div>
<div class="device-motion-notice">
<p><b>✨ TILT your device to move the ball! ✨</b></p>
<button id="enableMotion">Enable Motion Controls</button>
</div>
<div class="joystick-container" id="joystickContainer">
<div class="joystick-base"></div>
<div class="joystick-handle" id="joystickHandle"></div>
</div>
<!-- <button id="resetBtn">RESET GAME</button>
<button id="deleteBtn">DELETE LAST DIGIT</button> -->
<div class="marquee">
<p>★★★ THE MOST ANNOYING YET SURPRISINGLY SATISFYING WAY TO ENTER YOUR PHONE NUMBER! ★★★ COLLECT ALL 10 DIGITS TO WIN! ★★★ BEST VIEWED WITH NETSCAPE NAVIGATOR 4.0 OR HIGHER! ★★★</p>
</div>
<div class="footer">
© 2025 Retro Maze Phone Entry | <a href = "https://codepen.io/HunorMarton/pen/VwKwgxX">Inspired by Hunor Marton Borbely</a> | <span class="blink">UNDER CONSTRUCTION</span>
</div>
</div>
</body>
</html>