forked from liyasthomas/aeiou
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
190 lines (160 loc) · 6.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!doctype html>
<html lang="en" itemscope itemtype="http://schema.org/Person">
<head>
<meta charset="utf-8">
<meta name="generator" content="Polymer Starter Kit">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, shrink-to-fit=no">
<title>AEIOU</title>
<meta name="description" content="Web platform to make augmented reality fun & interactive!">
<meta itemprop="name" content="AEIOU">
<meta itemprop="description" content="Web platform to make augmented reality fun & interactive!">
<meta itemprop="image" content="images/manifest/icon-192x192.png">
<!--
The `<base>` tag below is present to support two advanced deployment options:
1) Differential serving. 2) Serving from a non-root path.
Instead of manually editing the `<base>` tag yourself, you should generally either:
a) Add a `basePath` property to the build configuration in your `polymer.json`.
b) Use the `--base-path` command-line option for `polymer build`.
Note: If you intend to serve from a non-root path, see [polymer-root-path] below.
-->
<base href="/">
<link rel="icon" href="images/favicon.ico">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="manifest.json">
<!-- See https://goo.gl/qRE0vM -->
<meta name="theme-color" content="#3eb1ff">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="AEIOU">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="AEIOU">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/manifest/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/manifest/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/manifest/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/manifest/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/manifest/icon-144x144.png">
<meta name="msapplication-TileColor" content="#3eb1ff">
<meta name="msapplication-tap-highlight" content="no">
<!-- OpenGraph -->
<meta property="og:site_name" content="AEIOU">
<meta property="og:url" content="https://liyas-thomas.firebaseapp.com">
<meta property="og:type" content="website">
<meta property="og:title" content="AEIOU">
<meta property="og:description" content="Web platform to make augmented reality fun & interactive!">
<meta property="og:image" content="images/manifest/icon-144x144.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@liyasthomas">
<meta name="twitter:creator" content="@liyasthomas">
<meta name="twitter:url" content="https://liyas-thomas.firebaseapp.com">
<meta name="twitter:title" content="AEIOU">
<meta name="twitter:description" content="Web platform to make augmented reality fun & interactive!">
<meta name="twitter:image" content="images/manifest/icon-144x144.png">
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Prompt:400,600,700,900" rel="stylesheet">
<script>
/**
* [polymer-root-path]
*
* Leave this line unchanged if you intend to serve your app from the root
* path (e.g., with URLs like `my.domain/` and `my.domain/view1`).
*
* If you intend to serve your app from a non-root path (e.g., with URLs
* like `my.domain/my-app/` and `my.domain/my-app/view1`), edit this line
* to indicate the path from which you'll be serving, including leading
* and trailing slashes (e.g., `/my-app/`).
*/
window.MyAppGlobals = { rootPath: '/' };
// Load and register pre-caching Service Worker
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: MyAppGlobals.rootPath
});
});
}
</script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js').then(function(registration) {
var app = document.querySelector('#app');
if (registration.waiting) {
app.update(registration);
return;
}
if (registration.installing) {
registration.installing.addEventListener('statechange', function() {
app.update(registration);
});
return;
}
registration.addEventListener('updatefound', function() {
app.update(registration);
});
console.info('ServiceWorker registration successful with scope: ', registration.scope);
}, function(err) {
console.info('ServiceWorker registration failed: ', err);
});;
});
}
</script>
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="node_modules/web-animations-js/web-animations-next-lite.min.js"></script>
<script src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<!-- Load your application shell -->
<script type="module" src="src/my-app.js"></script>
<!-- Add any global styles for body, document, etc. -->
<style>
body {
margin: 0;
padding: 0;
font-family: "Prompt", "Roboto", "Noto", sans-serif;
line-height: 1.5;
min-height: 100vh;
font-size: 18px;
font-weight: 600;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
}
#preloader {
font-weight: 900;
color: #b2b2b2;
font-size: 42px;
height: 100%;
width: 100%;
z-index: 1000;
position: fixed;
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<my-app id="app">
<div id="preloader">
AEIOU
</div>
</my-app>
<script>
window.addEventListener('WebComponentsReady', function() {
document.querySelector('my-app').show();
});
</script>
<noscript>
Please enable JavaScript to view this website.
</noscript>
<!-- Built with love using Polymer Starter Kit -->
</body>
</html>