-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (97 loc) · 3.06 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
<!doctype html>
<html lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Scale Explorer</title>
<meta content="Jekyll v3.9.2" name="generator" />
<meta content="Scale Explorer" property="og:title" />
<meta content="Xavier Delamotte" name="author" />
<meta content="en_US" property="og:locale" />
<meta content="Explore all the different scales" name="description" />
<meta
content="Explore all the different scales"
property="og:description"
/>
<link href="https://xade.eu/scales-explorer/" rel="canonical" />
<meta content="https://xade.eu/scales-explorer/" property="og:url" />
<meta content="Scale Explorer" property="og:site_name" />
<meta content="website" property="og:type" />
<meta
content="https://xade.eu/scales-explorer/preview.png"
property="og:image"
/>
<meta content="summary_large_image" name="twitter:card" />
<meta content="Scale Explorer" property="twitter:title" />
<meta
content="https://xade.eu/scales-explorer/preview.png"
property="twitter:image"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"author": {
"@type": "Person",
"name": "Xavier Delamotte"
},
"description": "Explore all the different scales",
"headline": "Scale Explorer",
"name": "Scale Explorer",
"url": "https://xade.eu/scales-explorer/"
}
</script>
<link href="simple.css" rel="stylesheet" type="text/css" />
<style>
:root {
--accent: rgb(47, 129, 247);
--accent-hover: rgb(73, 151, 255);
}
.music-sheet {
color: black;
margin-bottom: 10px;
background-color: #eed;
padding: 10px;
border: 10px solid #ddc;
cursor: pointer;
width: 100%;
max-height: 200px;
}
.music-sheet svg {
width: 100% !important;
}
select {
width: 100%;
}
button {
width: 100%;
}
</style>
<script src="[email protected]"></script>
<script src="main.js"></script>
</head>
<body>
<header>
<h1>Scales Explorer</h1>
</header>
<main>
<p>
Browse the different scales, you can click on the top of the stave if
you want to increase by a semi-tone, and click below to remove a
semi-tone.
</p>
<select id="scales-selector"></select>
<div class="music-sheet" id="music-sheet"></div>
<button id="randomise">Pick Random 🎲</button>
<div id="description"></div>
</main>
<footer>
<p>
Made with ❤️ by <a href="https://xade.eu">Xavier Delamotte</a> using
<a href="https://www.vexflow.com/">VexFlow</a>.
</p>
</footer>
</body>
</html>