-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (47 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
59 lines (47 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bass ass</title>
<meta name="description" content="The bass ass">
<meta name="author" content="BassAss">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/scripts.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css"
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd"
crossorigin="anonymous"></script>
</head>
<body style="margin: 10px;">
<label for="bpm">bpm</label>
<br>
<input style="width: 50px;" id="bpm" type="number" value="60" step="1"></input>
<br>
<label for="ripetizione">ciclo</label>
<br>
<input style="width: 50px;" id="ripetizione" type="number" value="4" step="1"></input>
<span id="counter"></span>
<br>
<label for="difficolta">Difficoltà</label>
<br>
<input checked="checked" type="radio" id="naturali" name="difficolta" value="naturali">
<label for="naturali">Naturali</label><br>
<input type="radio" id="diesis" name="difficolta" value="diesis">
<label for="diesis">♯</label><br>
<input type="radio" id="bemolle" name="difficolta" value="bemolle">
<label for="bemolle">♭</label>
<br>
<input type="radio" id="tutte" name="difficolta" value="tutte">
<label for="tutte">Tutte</label>
<br>
<button class="start-metronomo">Start</button>
<button class="stop-metronomo">Stop</button>
<div style="font-size: 150px;" id="nota"></div>
</body>
</html>