-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Graf Tabanlı Genom Analizi</title>
<link rel="stylesheet" href="style.css">
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.163.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.163.0/examples/jsm/"
}
}
</script>
<script src="https://d3js.org/d3.v7.min.js"></script>
</head>
<body>
<div id="heading">
<h1>Graf Tabanlı Genom Analizi</h1>
<div class="border"></div>
</div>
<!-- Sol menü ve içeriği için konteyner -->
<div id="side-menu">
<button id="menu-button">Bölge Seçiniz</button>
<div id="menu-content">
</div>
</div>
<!-- Kayan kutu için konteyner -->
<div id="info-box">
<p id="info-text"></p>
</div>
<div id="progress-container">
<div id="progress">Loading...</div>
</div>
<div id="graph-container"></div>
<script type="module" src="js/main.js"></script>
</body>
</html>