forked from makoto/stepup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (128 loc) · 5.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<!--[if lte IE 8]><html class='no-js oldie' lang='en'><![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en" class="no-js">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Step Up</title>
<meta name="description" content="">
<meta name="author" content="Craig Dallimore">
<link rel="shortcut icon" type="image/png" href="static/favicon.png">
<link rel="stylesheet" href="static/dist/app.min.css">
<link rel="stylesheet" href="style.css">
<!--[if (gte IE 6)&(lte IE 8)]>
<script src="static/js/libs/selectivizr-1.0.2.min.js"></script>
<![endif]-->
<script src="static/js/libs/modernizr-2.6.2.min.js"></script>
</head>
<body>
<header>
<a href="#"><img src="logo.png" /></a>
</header>
<h1>Step Up</h1>
<p>Watching a video repeatedly in small steps lets you lean and practice much easier. Start with the shortest loops at the bottom, and then Step Up to longer loops when you are ready.</p>
<noscript>
<p>This app works better with JavaScript enabled.</p>
</noscript>
<div id="video">
</div>
<div>
<button id="play">►</button>
<button id="prev">←</button>
<button id="next">→</button>
<button id="up">↑</button>
<button id="down">↓</button>
</div>
<section class="instructionBtns">
<a href="#keyboard"><button>Keyboard Instructions</button></a>
<a href="#leap"><button>Leap Motion Instructions</button></a>
</section>
<section id="keyboard" class="instructions">
To navigate between the loops, use the arrow keys (↑←↓→)
<a href="#">Close</a>
</section>
<section id="leap" class="instructions">
To navigate between the loops using Leap Motion swipe left, right, bottom or top.
<a href="#">Close</a>
</section>
<div class="foo" style="font-weight:bold; font-size:150%">
Time:<span id="current-time">
00:00
</span>
Speed:
<span id="speed">
</span>
From:
<span id="from">
</span>
To:
<span id="to">
</span>
</div>
<section id="score">
<ul class="levels">
<li class="level-3">
<ul>
<li><button data-step="1" data-level="3"></button></li>
<li><button data-step="2" data-level="3"></button></li>
</ul>
</li>
<li class="level-2">
<ul>
<li><button data-step="1" data-level="2"></button></li>
<li><button data-step="2" data-level="2"></button></li>
<li><button data-step="3" data-level="2"></button></li>
<li><button data-step="4" data-level="2"></button></li>
</ul>
</li>
<li class="level-1">
<ul>
<li><button data-step="1" data-level="1"></button></li>
<li><button data-step="2" data-level="1"></button></li>
<li><button data-step="3" data-level="1"></button></li>
<li><button data-step="4" data-level="1"></button></li>
<li><button data-step="5" data-level="1"></button></li>
<li><button data-step="6" data-level="1"></button></li>
<li><button data-step="7" data-level="1"></button></li>
<li><button data-step="8" data-level="1"></button></li>
</ul>
</li>
</ul>
</section>
<section id="controls">
<input type="range" id="tempo" min="0.5" max="1.5" step="0.1" value="1" />
<span>Slow</span>
<span>Fast</span>
</section>
<!--[if lt IE 9]>
<script src="static/js/libs/jquery-1.10.1.min.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="static/js/libs/jquery-2.0.2.min.js"></script>
<!--<![endif]-->
<script src="static/js/libs/popcorn/popcorn.js"></script>
<script src="static/js/libs/popcorn/popcorn.player.js"></script>
<script src="static/js/libs/popcorn/popcorn.youtube.js"></script>
<script src="static/js/libs/popcorn/popcorn._MediaElementProto.js"></script>
<script src="static/js/libs/popcorn/popcorn.HTMLYouTubeVideoElement.js"></script>
<script src="static/js/libs/underscore-min.js"></script>
<script src="static/js/libs/backbone-min.js"></script>
<script src="static/js/libs/leap.min.js"></script>
<script src="static/js/App.js"></script>
<script src="static/js/utils/events.js"></script>
<script src="static/js/utils/view_helper.js"></script>
<script src="static/js/models/level.js"></script>
<script src="static/js/models/video.js"></script>
<script src="static/js/models/step.js"></script>
<script src="static/js/collections/steps.js"></script>
<script src="static/js/collections/levels.js"></script>
<script src="static/js/views/keyboard_view.js"></script>
<script src="static/js/views/leapmotion_view.js"></script>
<script src="static/js/views/controls_view.js"></script>
<script src="static/js/views/steps_view.js"></script>
<script src="static/js/Main.js"></script>
</body>
</html>