-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
183 lines (181 loc) · 6.54 KB
/
Copy pathindex.html
File metadata and controls
183 lines (181 loc) · 6.54 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Digital Twin Lab — Industrial & Security</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap" rel="stylesheet" />
<style>
:root {
--bg0: #0a1218;
--bg1: #12202c;
--line: #1e3a4a;
--text: #d7e6ef;
--muted: #7a9aad;
--accent: #2ec4b6;
--warn: #f4a261;
--danger: #e76f51;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
min-height: 100vh;
font-family: "IBM Plex Sans", sans-serif;
color: var(--text);
background:
radial-gradient(ellipse 80% 50% at 20% 0%, #163447 0%, transparent 55%),
radial-gradient(ellipse 60% 40% at 90% 10%, #1a2f28 0%, transparent 50%),
linear-gradient(160deg, var(--bg0), var(--bg1));
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }
header { margin-bottom: 40px; }
.brand {
font-family: Orbitron, sans-serif;
font-size: clamp(1.6rem, 4vw, 2.4rem);
letter-spacing: 0.06em;
color: var(--accent);
}
h1 {
margin-top: 10px;
font-size: clamp(1.8rem, 5vw, 3rem);
font-weight: 600;
line-height: 1.15;
max-width: 16ch;
}
.lead {
margin-top: 14px;
color: var(--muted);
max-width: 52ch;
line-height: 1.55;
}
.hint {
margin-top: 18px;
display: inline-block;
padding: 8px 12px;
border: 1px dashed var(--line);
color: var(--warn);
font-size: 0.9rem;
}
.grid {
margin-top: 36px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 18px;
}
a.card {
display: block;
text-decoration: none;
color: inherit;
padding: 22px;
border: 1px solid var(--line);
background: rgba(10, 22, 30, 0.65);
transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
a.card:hover {
border-color: var(--accent);
background: rgba(18, 40, 48, 0.9);
transform: translateY(-3px);
}
.num {
font-family: Orbitron, sans-serif;
font-size: 0.75rem;
color: var(--accent);
letter-spacing: 0.12em;
}
a.card h2 {
margin-top: 8px;
font-size: 1.15rem;
font-weight: 600;
}
a.card p {
margin-top: 8px;
color: var(--muted);
font-size: 0.92rem;
line-height: 1.45;
}
.tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
font-size: 0.72rem;
letter-spacing: 0.04em;
text-transform: uppercase;
padding: 4px 8px;
border: 1px solid var(--line);
color: var(--muted);
}
.tag.ids { border-color: var(--danger); color: var(--danger); }
.tag.ind { border-color: var(--accent); color: var(--accent); }
footer {
margin-top: 48px;
color: var(--muted);
font-size: 0.85rem;
}
</style>
</head>
<body>
<div class="wrap">
<header>
<div class="brand">DIGITAL TWIN LAB</div>
<h1>Industrial, Security & Home Twin Projects</h1>
<p class="lead">
Standalone 3D digital-twin demos. Open any folder’s <code>index.html</code>
in your browser — no install required (internet needed for Three.js CDN). Prefer
<code>python -m http.server 8080</code> for local live demos.
</p>
<p class="hint">Tip: double-click a project’s index.html, or use the links below.</p>
</header>
<div class="grid">
<a class="card" href="01-industrial-plant-twin/index.html">
<div class="num">01</div>
<h2>Industrial Plant Twin</h2>
<p>Heavy plant twin: 8 machines, production circle, faults, KPIs, day/night, weather — browser only.</p>
<div class="tags"><span class="tag ind">Industrial</span><span class="tag">3D Grid</span></div>
</a>
<a class="card" href="02-smart-assembly-line/index.html">
<div class="num">02</div>
<h2>Smart Assembly Line</h2>
<p>Research-grade line twin: telemetry, anomaly, PdM, OEE, fault console — localhost live.</p>
<div class="tags"><span class="tag ind">Manufacturing</span><span class="tag">Digital Twin</span></div>
</a>
<a class="card" href="03-intrusion-detection-twin/index.html">
<div class="num">03</div>
<h2>Intrusion Detection Twin</h2>
<p>3D network graph that highlights scans, malware, and blocked threats.</p>
<div class="tags"><span class="tag ids">IDS</span><span class="tag">Security</span></div>
</a>
<a class="card" href="04-warehouse-logistics-twin/index.html">
<div class="num">04</div>
<h2>Warehouse Logistics Twin</h2>
<p>Racks, AGV robots, and inventory heat on a warehouse floor grid.</p>
<div class="tags"><span class="tag ind">Logistics</span><span class="tag">3D Grid</span></div>
</a>
<a class="card" href="05-power-substation-grid/index.html">
<div class="num">05</div>
<h2>Power Substation Grid</h2>
<p>Electrical twin with transformers, load flow, and fault animation.</p>
<div class="tags"><span class="tag ind">Energy</span><span class="tag">Grid</span></div>
</a>
<a class="card" href="06-water-treatment-scada/index.html">
<div class="num">06</div>
<h2>Water Treatment SCADA</h2>
<p>Pumps, tanks, and valves with SCADA-style process animation.</p>
<div class="tags"><span class="tag ind">Process</span><span class="tag">SCADA</span></div>
</a>
<a class="card" href="07-cyber-physical-security/index.html">
<div class="num">07</div>
<h2>Cyber-Physical Security</h2>
<p>OT plant + IT intrusion overlay — attacks that affect machines.</p>
<div class="tags"><span class="tag ids">IDS</span><span class="tag ind">OT/IT</span></div>
</a>
<a class="card" href="08-home-digital-twin/index.html">
<div class="num">08</div>
<h2>Home Digital Twin</h2>
<p>Living-room twin: history, energy, scenes, timeline replay, what-if, faults, Assist, camera & export.</p>
<div class="tags"><span class="tag ind">Smart Home</span><span class="tag">IoT</span></div>
</a>
</div>
<footer>
Open <strong>index.html</strong> in this folder to browse all projects. Each project lives in its own folder.
</footer>
</div>
</body>
</html>