-
Notifications
You must be signed in to change notification settings - Fork 0
/
contours.html
61 lines (53 loc) · 1.62 KB
/
contours.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta property="og:title" content="Synth Friday: Contours">
<meta property="og:description" content="Pretty contour lines that shape to a song.">
<meta property="og:image" content="http://synthfriday.com/media/contours.png">
<meta property="og:url" content="http://synthfriday.com/contours.html">
<meta name="twitter:card" content="summary_large_image">
<title>SYNTHFRIDAY!!!</title>
<style type="text/css">
body {
margin: 0;
background-color: black;
overflow: hidden;
}
audio {
display: hidden;
}
#play {
position: absolute;
height: 200px;
left: 50%;
cursor: pointer;
display: inline-block;
}
h1 {
color: #fff;
font-family: sans-serif;
margin: 0;
}
.line {
fill: none;
stroke-width: 2;
}
.heavy {
font: bold 200px sans-serif;
color: #fff;
}
</style>
</head>
<body>
<div id="play">
<h1>🎹 ▶</h1>
</div>
<audio controls id="audioElement">
<source src="./tracks/wee.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="./js/contours.js"></script>
</body>
</html>