-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (33 loc) · 1.5 KB
/
index.html
File metadata and controls
42 lines (33 loc) · 1.5 KB
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
<html>
<head>
<meta charset="utf-8">
<title> Exercise Lock Screen Prototype</title>
<meta name="description" content="">
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styles.css">
<!-- Include JQuery and handwriting scripts -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.3.1/dist/tf.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@teachablemachine/pose@0.8/dist/teachablemachine-pose.min.js"></script>
</head>
<body>
<div id="phone-home-screen">
<div id="phone-border"></div>
<div id="phone-lock-screen">
<div id="canvas-container">
<h1 id="countdown"></h1>
<h2 id="counter"></h2>
<img id="canvas" src="resources/img/set-up-push-up.gif" alt="this slowpoke moves" width="300px" />
</div>
<div id="button-container">
<h2>Pick your unlock exercise</h2>
<div class="canvas-button" id="push-up-button"></div>
<div class="canvas-button" id="squat-button"></div>
</div>
</div>
</div>
<!-- include custom javascript -->
<script type="text/javascript" src="scripts/app.js"></script>
</body>
</html>