-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (63 loc) · 2.12 KB
/
index.html
File metadata and controls
74 lines (63 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3Dcube</title>
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div class="background-glow"></div>
<div class="viewer">
<input type="radio" name="view" id="front" />
<input type="radio" name="view" id="back" />
<input type="radio" name="view" id="left" />
<input type="radio" name="view" id="right" />
<input type="radio" name="view" id="top" />
<input type="radio" name="view" id="bottom" />
<button class="reset-button" onclick="document.querySelector('input[name=view]:checked').checked = false;">Reset</button>
<div class="controls">
<label for="front">Front View</label>
<label for="back">Back View</label>
<label for="left">Left Side</label>
<label for="right">Right Side</label>
<label for="top">Top Down</label>
<label for="bottom">Bottom Up</label>
</div>
<div class="scene">
<div class="cube-face front" data-tooltip="Main Product View">
Front Perspective
<span>Product Image</span>
</div>
<div class="cube-face back" data-tooltip="Technical Specifications">
Back Panel
<span>Details & Specs</span>
</div>
<div class="cube-face right" data-tooltip="Side Components">
Right Side
<span>Connection Ports</span>
</div>
<div class="cube-face left" data-tooltip="Feature Highlights">
Left Side
<span>Control Interface</span>
</div>
<div class="cube-face top" data-tooltip="Top Overview">
Top View
<span>Cooling System</span>
</div>
<div class="cube-face bottom" data-tooltip="Base Details">
Bottom View
<span>Mounting Points</span>
</div>
</div>
<div class="dot-indicators">
<label for="front"></label>
<label for="back"></label>
<label for="left"></label>
<label for="right"></label>
<label for="top"></label>
<label for="bottom"></label>
</div>
</div>
</body>
</html>