-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbouncing-ball.html
More file actions
31 lines (25 loc) · 979 Bytes
/
bouncing-ball.html
File metadata and controls
31 lines (25 loc) · 979 Bytes
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
<!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">
</head>
<body onLoad="init();">
<div class="container"><a href="index.html">
<h1>Javascript Physics</h1>
</a>
<hr>
<h4>Bouncing ball</h4>
<hr>
<canvas id="canvas" width="1200" height="400"></canvas>
<script src="bouncing-ball.js"></script>
</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>