-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (53 loc) · 1.32 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<style>
body {
color: white;
}
#vanta-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
iframe {
margin-top: 35px;
background-color: transparent;
}
h1 {
margin-top: 50px;
background-color: rgba(0, 0, 0, 0);
text-align: center;
font-size: 35px;
}
</style>
<head>
<meta charset="UTF-8">
<title>Elucidation of Disease Susceptibility Through Analysis of Environmental and RNA-Seq Data</title>
</head>
<body>
<h1>
Elucidation of Disease Susceptibility Through Analysis of Environmental and RNA-Seq Data
</h1>
<iframe src="./map_with_buttons.html" width="100%" height="600px" frameborder="0" style="background-color: transparent;"></iframe>
<div id="vanta-bg"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://unpkg.com/vanta/dist/vanta.net.min.js"></script>
<script>
VANTA.NET({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x68c1f5,
backgroundColor: 0x1a134a
})
</script>
</body>
</html>