-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
74 lines (63 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>VR Zen Garden</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="./main.css">
<link
rel="icon"
type="image/png"
sizes="32x32"
href="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/271/mount-fuji_1f5fb.png"
/>
<meta name="description" content="This is an interactive Zen Garden in WebXR. The central idea of this small side projects is that Vibert wanted to create a space where you can meditate in the browser. He is strongly impressed by the Zen Gardens when he visited the ancient city Kyoto." />
<meta name="author" content="Vibert Thio" />
<meta name="url" content="https://vibertthio.com/karesansui/"/>
<meta name="image" content="https://raw.githubusercontent.com/vibertthio/karesansui/master/static/kare_512x512.jpg"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://raw.githubusercontent.com/vibertthio/karesansui/master/static/kare_1280x720.jpg"/>
<meta property="og:title" content="Interactive Zen Garden in WebXR" />
<meta property="og:description" content="This is an interactive Zen Garden in WebXR. The central idea of this small side projects is that Vibert wanted to create a space where you can meditate in the browser. He is strongly impressed by the Zen Gardens when he visited the ancient city Kyoto."/>
<meta property="og:url" content="https://vibertthio.com/karesansui/"/>
<meta property="og:site_name" content="Vibert Thio" />
<meta name="twitter:title" content="Interactive Zen Garden in WebXR">
<meta name="twitter:description" content="This is an interactive Zen Garden in WebXR. The central idea of this small side projects is that Vibert wanted to create a space where you can meditate in the browser. He is strongly impressed by the Zen Gardens when he visited the ancient city Kyoto.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/vibertthio/karesansui/master/static/kare_1280x720.jpg"/>
<meta name="twitter:image:alt" content="Vibert Thio's cyber portal" />
<meta name="twitter:card" content="summary_large_image">
<!-- ga -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-102358307-1', 'auto');
ga('send', 'pageview');
</script>
<base target="_blank">
</head>
<body>
<div id="info">
🍃 かれさんすい. 枯山水. Zen Garden.
<br>
by <a href="https://vibertthio.com">Vibert Thio</a>.
<div id="credit">
Rock model by <a href="https://sketchfab.com/quintessenz">quintessenz</a> and the tree is generated from <a href="https://gltf-trees.donmccurdy.com/">here</a>.
</div>
</div>
<div id="splash">
loading...
</div>
<script type="module" src="./script.js"></script>
</body>
</html>