This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (41 loc) · 1.51 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>
<head>
<title>ChartGL Demo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta property="og:title" content="ChartGL Demo">
<meta property="og:url" content="https://chartgl.zone/">
<meta property="og:image" content="https://chartgl.zone/preview.png">
<meta property="og:description" content="An experiment in React + WebGL + CSS3D">
<meta name="twitter:card" content="summary">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
touch-action: manipulation;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
}
#demo {
padding: 50px 20px 100px;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-97471367-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-97471367-2');
</script>
</head>
<body>
<div id="demo"></div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.0.12/howler.core.min.js"></script>
<script type="text/javascript" src="bundle.js" charset="utf-8"></script>
</body>
</html>