-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (74 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Spring Flowers WebGL Demo">
<meta name="author" content="Oleksandr Popov">
<link rel="preload" href="styles/img/bg.jpg" as="image">
<link rel="icon" href="favicon.ico">
<link rel="icon" sizes="192x192" href="icon-192.png">
<link rel="apple-touch-icon" href="icon-192.png">
<title>Spring Flowers WebGL demo</title>
<link rel="stylesheet" href="styles/css/site.css">
<script src="dist/js/es/index.min.js"></script>
<meta name="theme-color" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="apple-mobile-web-app-status-bar-style" content="#111111">
<meta name="mobile-web-app-capable" content="yes">
<link rel="manifest" href="manifest.json">
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="width: 0; height: 0; position: absolute;">
<filter id="dropshadow" height="130%">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" /> <!-- stdDeviation is how much to blur -->
<feOffset dx="0" dy="0" result="offsetblur" /> <!-- how much to offset -->
<feComponentTransfer>
<feFuncA type="linear" slope="1.6" /> <!-- slope is the opacity of the shadow -->
</feComponentTransfer>
<feMerge>
<feMergeNode /> <!-- this contains the offset blurred image -->
<feMergeNode in="SourceGraphic" /> <!-- this contains the element that the filter is applied to -->
</feMerge>
</filter>
</svg>
<canvas id="canvasGL" class="canvasGL transparent">
Your browser doesn't appear to support the <code><canvas></code> element.
</canvas>
<h3 id="message" class="progress">
<div>Loading</div>
<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>
</h3>
<a href="javascript:void(0)" id="toggleFullscreen" class="control-icon control-fs transparent">
<i class="icon-enter-fs" title="Fullscreen Mode">
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 24 24" width="32">
<path d="M0 0h24v24H0z" fill="none" />
<path style="filter:url(#dropshadow)" id="shape"
d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" />
</svg>
</i>
<i class="icon-exit-fs" title="Exit Fullscreen">
<svg xmlns="http://www.w3.org/2000/svg" height="32" viewBox="0 0 24 24" width="32">
<path d="M0 0h24v24H0z" fill="none" />
<path style="filter:url(#dropshadow)" id="shape"
d="M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" />
</svg>
</i>
</a>
<div id="promo" class="promo transparent">
<h3 class="text">
<a
href='https://github.com/keaukraine/webgl-flowers'>
Github
</a>
</h3>
<h3 class="text">
<a
href='https://play.google.com/store/apps/details?id=org.androidworks.livewallpaper.flowers&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'>
Android app
</a>
</h3>
</div>
</body>
</html>