-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 749 Bytes
/
index.html
File metadata and controls
36 lines (36 loc) · 749 Bytes
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
<head>
<link href="assets/loading.css" rel="stylesheet" type="text/css" />
<style>
.loading {
display: none;
}
.container {
width: 90%;
margin-left: 5%;
}
#interactivePlot {
width: 100%;
height: 100%;
}
#basicPlot {
width: auto;
height: auto;
transform: scaleY(-1);
-webkit-transform: scaleY(-1);
}
</style>
</head>
<body>
<div id="main" class="container">
<h1>opengrib2</h1>
</br>
GitHub: <a href="url">https://github.com/archmoj/opengrib2</a>
</br>
</br>
Select file: <select id="file-selector"></select>
<canvas id="basicPlot"></canvas>
<div id="interactivePlot"></div>
</div>
<div id="loading" class="loading"></div>
<script src="build/bundle.js"></script>
</body>