forked from PavelDoGreat/WebGL-Fluid-Simulation
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (50 loc) · 2.2 KB
/
index.html
File metadata and controls
65 lines (50 loc) · 2.2 KB
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
<!DOCTYPE html>
<html lang="en">
<!--SETUP: Fill in blank properties in HEAD-->
<head>
<meta charset="UTF-8" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- Page title shown in browser tab -->
<title>WebGL Fluid Background</title>
<!-- Responsive viewport settings for mobile devices -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<!-- Ensure compatibility with Internet Explorer -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Enable full-screen appearance for iOS Safari -->
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- Description for search engines and SEO -->
<meta name="description" content="A WebGL-based fluid simulation adapted from PavelDoGreat's project, optimised for creating dynamic website backgrounds." />
<meta name="author" content="Thomas Kabalin" />
<!-- Open Graph metadata for social sharing -->
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:url" content="" />
<!--SETUP: add a browser tab icon-->
<link rel="icon" href="" type="image/png" />
<!--SETUP: update the file paths if you move the file-->
<link rel="stylesheet" href="fluid-overlay-styles.css" />
<!--REMOVE THE FOLLOWING LINE-->
<meta name="google-site-verification" content="KxV1WEjEkGzvRm3viGVmb1_nOUMs4bxHwcnRzFqIgxQ" />
</head>
<body>
<canvas></canvas>
<!--The canvas on which the animation is drawn-->
<!--START OF CONTENT-->
<div class="overlay-heading">Hello World!</div>
<a href="https://github.com/tkabalin/WebGL-Fluid-Background/blob/master/README.md" target="_blank" class="read_me">
View the README
</a>
<!--END OF CONTENT-->
<!--SETUP: update the file paths if you move the file. Moving config and the LDR image requires making changes in the script-->
<script src="./webgl-fluid.js"></script>
</body>
</html>