This repository was archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathen.html
More file actions
86 lines (76 loc) · 2.02 KB
/
en.html
File metadata and controls
86 lines (76 loc) · 2.02 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
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
<html>
<head>
<title>Dancing Markov Gymnopedies</title>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0;
background: linear-gradient(135deg, #000, #222);
color: #eee;
}
.loading {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
font-family: sans-serif;
}
nav {
position: fixed;
width: 100%;
left: 0;
top: 40px;
width: 100%;
height: 30px;
text-align: center;
}
nav button {
margin: 0 20px;
padding: 10px;
cursor: pointer;
border: 0;
background: none;
font-size: 2em;
color: #eee;
font-weight: normal;
font-family: 'Dancing Script', cursive;
outline: none;
}
button.active {
border-bottom: 1px solid #eee;
}
.visualization {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
circle {
transition: fill 0.5s ease-out;
}
path {
transition: stroke 0.5s ease-out, fill 0.5s ease-out;
}
</style>
<!-- <script src="https://cdn.jsdelivr.net/gh/teropa/Piano@fix-tone-extern/build/Piano.js"></script> -->
<script src="https://cdn.jsdelivr.net/gh/tambien/StartAudioContext@8da8637e/StartAudioContext.js"></script>
</head>
<body>
<div class="loading">Loading...</div>
<div class="visualization">
</div>
<nav>
<button id="g1" class="active">Gymnopédie No. 1</button>
<button id="g2">Gymnopédie No. 2</button>
<button id="g3">Gymnopédie No. 3</button>
</nav>
</body>
</html>