-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
34 lines (30 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fine-Structure-Solver: Atomic Force-Density</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="ui-layer">
<h1>⚛️ Fine-Structure-Solver</h1>
<p>High-Performance WebGL Atomic Force-Density Visualization</p>
<div class="controls" style="margin-top: 20px;">
<label for="alphaSlider" style="display: block; margin-bottom: 10px;">
Coupling Constant Base ($\alpha$): <span id="alphaValue" style="color: #fff; font-weight: bold;">137.035999</span>
</label>
<input type="range" id="alphaSlider" min="100.0" max="200.0" step="0.000001" value="137.035999" style="width: 100%; accent-color: #00ffcc;">
<p style="font-size: 0.8rem; color: #888; margin-top: 10px;">
Modulates the electrostatic force vectors mapping repulsion vs nuclear binding.
</p>
<button id="snapshotBtn" style="margin-top: 15px; padding: 10px 15px; background-color: #00ffcc; color: #050510; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; display: block; width: 100%;">
📸 Export Snapshot Pipeline
</button>
</div>
</div>
<div id="glcontainer" style="position: absolute; top:0; left:0; width:100%; height:100%; z-index:1;"></div>
<!-- Use ES modules for Three.js import -->
<script type="module" src="src/force_density_visualizer.js"></script>
</body>
</html>