-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>Javascript Physics Examples</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" content="Examples using HTMLCanvas and javascript.">
<meta name="Keywords" content="javascript,javascript animation html Canvas, Frank Agathos, Frantzeskos Agathos">
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
#canvas {
-webkit-filter: blur(1px) brightness(2);
}
</style>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet">
</head>
<body onLoad="init();">
<div class="container"><a href="index.html">
<h1>Javascript Physics</h1>
<canvas id="canvas" width="1600" height="400"></canvas>
<script src="bouncing-ball.js"></script>
<h3>Examples</h3>
<hr>
<ol>
<li><a href="changeposition.html">Change position</a></li>
<li><a href="changespeed.html">Change speed</a></li>
<li><a href="freefall.html">Free fall</a></li>
<li><a href="bouncing-ball.html">Bouncing ball</a></li>
</ol>
</div>
</body>
<footer>
Created by <a href="https://frankagathos.com">Frank Agathos</a> with the help of: <a href="https://amzn.to/3nm81yo" target="_blank">Physics for JavaScript Games,
Animation, and Simulations</a>
</footer>
</html>