-
Notifications
You must be signed in to change notification settings - Fork 3
/
demo.html
58 lines (50 loc) · 2.97 KB
/
demo.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
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149375445-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-149375445-1');
</script>
<title>GrodnoVR - Grodno 360 Tour</title>
<meta name="description" content="GrodnoVR - Grodno city of Belarus in Virtual Reality (prototype web app based on ReactVR framework). Author - Artur Basak">
<meta name="keywords" content="гродно,беларусь,виртуальная экскурсия,виртуальный гродно,гродно 360,grodnovr,grodno,belarus,reactvr,ovrui,webvr,vr,vrui,immersive web,immersive,3d,360 tour,3d tour,three.j,webgl,wirtualna rzeczywistość,старая Горадня віртуальна,віртуальная экскурсія,віртуальная рэчаіснасць,Гародня,Гродна">
<meta property="og:title" content="Demo | GrodnoVR">
<meta property="og:type" content="website">
<meta property="og:url" content="https://grodno-vr.github.io">
<meta property="og:image" content="https://grodno-vr.github.io/static_assets/images/square.png">
<meta property="og:description" content="GrodnoVR - Grodno city of Belarus in Virtual Reality (prototype web app based on ReactVR framework). Author - Artur Basak">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="ru_RU">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="apple-touch-icon" sizes="180x180" href="static_assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static_assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static_assets/favicon/favicon-16x16.png">
<link rel="manifest" href="static_assets/favicon/manifest.webmanifest">
<link rel="mask-icon" href="static_assets/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="apple-mobile-web-app-title" content="Grodno VR">
<meta name="application-name" content="Grodno VR">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="static_assets/favicon/browserconfig.xml" />
<meta name="theme-color" content="#000000">
<link rel="stylesheet" href="./static_assets/style.css" type="text/css" >
<title>GrodnoVR</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body style="cursor: none">
<script src="./third-party/webvr-polyfill.js"></script>
<script>new WebVRPolyfill();</script>
<script src="./vr/build/client.bundle.js?platform=vr"></script>
<script>
ReactVR.init('./vr/build/index.bundle.js?platform=vr&dev=true', document.body);
</script>
</body>
</html>