-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconv-instrument.html
More file actions
55 lines (51 loc) · 1.88 KB
/
conv-instrument.html
File metadata and controls
55 lines (51 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hand-Controlled WebAudio Instrument</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=UnifrakturCook:wght@700&display=swap"
rel="stylesheet"
/>
<script src="build/components/bundle.js"></script>
<style>
body {
font-family: 'Roboto', sans-serif;
}
hr {
display: block;
}
h2 {
text-decoration: underline;
}
body {
margin: 0;
padding: 0;
height: 100vh;
background: radial-gradient(
circle at 20% 30%,
rgba(255, 255, 255, 0.6) 0%,
transparent 60%
),
radial-gradient(
circle at 80% 70%,
rgba(255, 255, 255, 0.4) 0%,
transparent 60%
),
linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
background-blend-mode: soft-light;
animation: etherealShift 20s ease-in-out infinite alternate;
transition: background 1s ease-in-out;
font-family: 'Helvetica Neue', sans-serif;
}
</style>
</head>
<body>
<conv-instrument
url="https://resonancemodel.s3.amazonaws.com/resonancemodelparams_ea4863b0830ec5ffd6ec39c1a3155d0cb48319fd"
></conv-instrument>
</body>
</html>