-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhelp.html
85 lines (76 loc) · 3.26 KB
/
help.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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="styles.css" type="text/css" media="screen">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script src="js/underscore-min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="jremix.js"></script>
<title> Girl Talk in a Box</title>
</head>
<body>
<div id="wrap" class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a id='show-search' class="brand">Girl Talk in a Box</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a id='show-main' href="index.html">Main</a></li>
<li><a id='show-gallery' href="gallery.html">Gallery of songs</a></li>
<li><a id='show-loader' href="loader.html">Upload a song</a></li>
<li class="active"><a id='show-help' href="help.html">Help</a></li>
<li><a id='show-about' href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id='info'> </div>
<div id="help" class="hero-unit">
<div class="container">
<h2> Girl Talk in a Box</h2>
Take control of your favorite song
<p>
<b>Controls:</b>
<ul>
<li> mouse click - start playing from the clicked beat
<li> space - start and stop playing the song
<li> arrows - control song cursor velocity
<li> w/a/s/d - move the song cursor
<li> < > ? - controls the beat period
<li> b - toggle between beats and tatums
<li> shift+key - bookmark a beat
<li> [/] - set loop points
</ul>
<b>Things you can do:</b>
<li> Try playing every other beat of a song by starting a song playing and then pressing the right arrow once.
<li> Try playing a song backwards by pressing the left arrow twice and clicking on a beat.
<li> Make a swing version of the song by switching to tatums (hit 'b') and setting the beat
period to 150% (use the '>' key) and play every other tatum.
<li> Create a 'breakdown' and a drop by stopping the song on a beat and reducing the period to zero (via the < key).
start things back up by pressing '?' and up arrow simultaneously.
<li> You can move blocks around by dragging them.
<li> You can copy blocks with ctrl-c.
</div>
</div>
</body>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3675615-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type =
'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</html>