-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (78 loc) · 3.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>StarmapVis</title>
<!-- <link rel="icon" href="image/logo5.png" />-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://unpkg.com/cookiejs/dist/cookie.min.js"></script>
<script type="text/javascript" src="packages/papaparse.min.js"></script>
</head>
<body style="background-color:#F4F6F6">
<!--top nav-->
<div class="row align-items-start shadow" style="background-color: #154360; color: #F4F6F6">
<div class="col">
<h2 class="p-2 ms-2 fw-light"><a href="index.html" style="text-decoration:none; color: #F4F6F6">StarmapVis</a></h2>
</div>
<div class="col p-1">
<ul class="nav justify-content-end p-2">
<li class="nav-item">
<a class="nav-link fw-light" href="about.html" style="color: white">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link fw-light" href="data.html" style="color: white">DATA</a>
</li>
<li class="nav-item">
<a class="nav-link fw-light" href="https://github.com/holab-hku/starmapVR" style="color: white">SOURCE CODE</a>
</li>
</ul>
</div>
</div>
<!--main-->
<div class="container p-2" style="height: auto">
<div class="container" style="height: 150px"></div>
<h1 class="fw-lighter m-2 justify-content-center row" style="font-size: 60px; color: #154360">StarmapVis</h1>
<h4 class="fw-lighter text-muted m-2 justify-content-center row">Immersive spatial visualisation of single cell data</h4>
<div class="container" style="height: 45px"></div>
<div class="d-flex justify-content-center">
<button class="btn btn-success m-1 btn-block" type="button" onclick="goCanvas('custom')">Upload</button>
<button class="btn btn-primary m-1 btn-block" type="button" onclick="goCanvas('s1')">Demo Data 1</button>
<button class="btn btn-primary m-1 btn-block" type="button" onclick="goCanvas('s2')" >Demo Data 2</button>
<button class="btn btn-success m-1 btn-block" type="button" onclick="goCanvas('s3')" >Demo Story 1</button>
<button class="btn btn-success m-1 btn-block" type="button" onclick="goCanvas('s4')" >Demo Story 2</button>
</div>
<div class="container" style="height: 45px"></div>
</div>
<!--foot-->
<div class="row shadow justify-content-center fixed-bottom fw-lighter fs-6 text-muted" style="background-color: white">
Copyright © 2023 Ho Lab at HKU. All Rights Reserved
</div>
</body>
<style>
.btn-primary {
background-color: #154360 !important;
border-color: #154360;
}
.btn-success {
background-color: #16A085;
border-color: #16A085;
}
.btn:hover,
.btn:active,
.btn:focus,
.btn:visited{
background-color: #EB984E !important;
border-color: #EB984E !important;
}
input[type="text"] {
box-sizing: border-box;
}
</style>
<script>
function goCanvas( name ) {
location.href = "canvas.html?target="+name;
}
</script>
</html>