-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (72 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stokes' Law | Interactive Animation</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="An interactive animation to learn about Stokes' law, an equation that describes the factor influencing the sinking and floating of particles, which is used in science and engineering."
/>
<meta name="msapplication-TileColor" content="#4181ff" />
<meta name="msapplication-config" content="./img/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<link href="./styles/main.css" rel="stylesheet" />
<link
rel="stylesheet"
href="./styles/font-awesome-4.7.0/css/font-awesome.min.css"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./img/favicon-16x16.png"
/>
<link rel="manifest" href="./img/site.webmanifest" />
<link rel="mask-icon" href="./img/safari-pinned-tab.svg" color="#2d39ff" />
<link rel="shortcut icon" href="./img/favicon.ico" />
</head>
<body id="body">
<div class="center" id="panel"></div>
<div class="modal" id="modal"></div>
<div title="Plot of velocity over time" id="logwrap">
<svg id="logger" width="150" height="150"></svg>
</div>
<div id="statswrap">
<div
title="Average particle diameter is used to calculate mean velocity.
Velocity is then multiplied by 100 to give a readable value."
id="stats"
></div>
</div>
<script src="//d3js.org/d3.v4.min.js"></script>
<script type="application/javascript">
window.d3 ||
document.write(
unescape('%3Cscript src="./scripts/vendor/d3.min.js"%3E%3C/script%3E')
)
</script>
<script src="./scripts/constants.js"></script>
<script src="./scripts/device.js"></script>
<script src="./scripts/modifiers.js" async></script>
<script src="./scripts/interface.js" defer></script>
<script src="./scripts/window.js" defer></script>
<script src="./scripts/stokes.js" defer></script>
<script src="./scripts/utilities.js" defer></script>
<script src="./scripts/particles.js" defer></script>
<script src="./scripts/stats.js" defer></script>
<script src="./scripts/logger.js" defer></script>
<script src="./scripts/main.js" defer></script>
<script src="./scripts/about.js" defer></script>
</body>
</html>