forked from TheCBKM/Pong_IT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathL4.html
22 lines (22 loc) · 888 Bytes
/
L4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {margin:0; padding:0;} /* remove top and left whitespace hello */
canvas {display:block;} /* remove scrollbars */
canvas:focus {outline:0;} /* remove blue outline around canvas */
.fs {position:fixed; bottom:20px; right:20px;}
#enter {display:block;}
#exit {display:none;}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.sound.min.js"></script>
<meta charset="utf-8" />
</head>
<body>
<script src="mainFunc.js"></script>
<script src="pingpong.js"></script>
<script src="L4.js"></script>
</body>
</html>