-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (61 loc) · 5.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="favicon.svg">
<title>DAD Digital</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Cousine&display=swap');
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1 id="title">Layers</h1>
<div id="intro-texts" class="hidden">
<p class="intro-1">Next time you hear me, I will not be the same.</p>
<p class="intro-2">Each listener erodes me as I play.</p>
<p class="intro-3" id="last-rebuild">I am not sure when I was last rebuilt.</p>
</div>
<div id="text-container" class="hidden">
<p id="text-0">overwhelmed with the present</p>
<p id="text-1">blinded by reality</p>
<p id="text-2">awareness yearning</p>
<p id="text-3">small joys creep in</p>
<p id="text-4">responsibilities step back</p>
<p id="text-5">quietness approaches</p>
<p id="text-6">accompanied by contemplation</p>
<p id="text-7">stillness sets in</p>
<p id="text-8">alone with the self</p>
</div>
<p id="refresh-text">Refresh to listen again.</p>
<button type="button" id="play-button" disabled>
<span id="loading">Loading...</span>
<span id="loaded">Play</span>
</button>
</main>
<footer>
<div id="override-slider-container" class="hidden">
<label for="override-slider">Erosion override</label>
<input type="range" min="0" max="1" step="0.01" value="0" id="override-slider" />
</div>
<p id="cheat-link" class="hidden">
Thanks for visiting yet again. If you'd like to cheat, try <a href="/?override">
this link to control the erosion manually.</a>
</p>
<p>Concept and design by <a href="https://lucas-levin.com" target="_blank" rel="noopener">
Lucas Levin</a> for <a href="https://www.dadonline.uk/digital-festival/" target="_blank" rel="noopener">
Dover Arts Development
</a></p>
<p><i>Beata Progenies</i> by Leonel Power<br>
Performed by <a href="https://yishingcheng.com" target="_blank" rel="noopener">Yi-Shing Cheng</a></p>
</footer>
<aside id="error" class="hidden"><p>Sorry, there was an error. Try refreshing the page.</p></aside>
<script src="https://unpkg.com/@supabase/supabase-js"></script>
<script src="https://unpkg.com/tone"></script>
<script src="index.js"></script>
<script async src="https://an.lucas-levin.com/lucasan.js" data-ackee-server="https://an.lucas-levin.com" data-ackee-domain-id="698d3bd0-6819-4f4a-9f07-9166f66cce16"></script>
</body>
</html>