-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 983 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Leap-Pong</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="http://js.leapmotion.com/0.2.0/leap.min.js"></script>
<script src="main.js"></script>
<style>
body {padding: 0; margin: 0; overflow: hidden;}
</style>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
</head>
<body>
<div class="container">
<h1 id="header">Leap-Pong</h1>
<!-- <h3>Leap Motion + HTML Canvas</h3> -->
<img id="logo" src="canvas+leap.jpg"></img>
<div id="detected-wrapper">
<h5 id="detected">Leap Sensor Detected</h5>
</div>
<canvas id="canvas"></canvas>
<!-- <h3 id="highs-core">High score: </h3> -->
<audio preload="true" id="collide">
<source src="hit.mp3" />
</audio>
</div>
</body>
</html>