-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.58 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.58 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
35
36
37
38
39
40
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no" />
<link rel="preload" href="/node_modules/@perspective-dev/server/dist/wasm/perspective-server.wasm" as="fetch" type="application/wasm" crossorigin="anonymous" />
<link rel="preload" href="/node_modules/@perspective-dev/viewer/dist/wasm/perspective-viewer.wasm" as="fetch" type="application/wasm" crossorigin="anonymous" />
<link rel="preload" href="/node_modules/superstore-arrow/superstore.lz4.arrow" as="fetch" type="arraybuffer" crossorigin="anonymous" />
<link rel="stylesheet" crossorigin="anonymous" href="/node_modules/@perspective-dev/viewer/dist/css/themes.css" />
<script type="module" src="index.js"></script>
<style>
#query {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 30%;
}
#logger {
position: absolute;
top: 40%;
left: 70%;
bottom: 0%;
right: 0;
}
#logger2 {
position: absolute;
top: 0%;
left: 70%;
bottom: 60%;
right: 0;
}
</style>
</head>
<body>
<perspective-viewer id="query"></perspective-viewer>
<perspective-viewer id="logger"></perspective-viewer>
<perspective-viewer id="logger2"></perspective-viewer>
</body>
</html>