-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 932 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 932 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dog Laser Playground</title>
<link rel="preload" as="image" href="/Users/sai/dev/work/market/payment/payment-demo/olares-dog.webp" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="stage">
<div class="dog-wrapper">
<img src="./olares-dog.webp" alt="Olares Dog" class="dog" />
<div class="eyes">
<div class="eye" data-eye="left">
<div class="pupil"></div>
</div>
<div class="eye" data-eye="right">
<div class="pupil"></div>
</div>
</div>
</div>
<div class="hint">Move your mouse to attract the gaze, left click to unleash random effects.</div>
</div>
<script src="./main.js" type="module"></script>
</body>
</html>