-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (114 loc) · 4.59 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>vrabec</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css" />
<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=Inter:wght@800&display=swap"
rel="stylesheet"
/>
<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=Kanit:wght@900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/102/three.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/simplex-noise/2.3.0/simplex-noise.min.js"></script>
<div id="visualiser">
<div class="datum"><p id="text">20.3.2024</p></div>
</div>
<div class="opis">
<p id="textopis">
Not so much a message about this track, but more so a
description and what went into the song when I was constructing
it. <br />
Finally becoming a piece, a concept of inner emotions painted
onto a canvas. Words from within. 'REDSPARROW', an idea with
distorted, robust refrains transitioning in and out with the
help of disoriented, disturbed and distressed tones.<br />
A sequence of morphing elements which create a feeling of
claustrophobia, a sense of confined spaces. Drums of distress
keeping up the fast paced tempo of life that spin and spin and
spin, they don't stop spinning. <br />
Being inspired by the unmatched pretty of unknown, desolate and
contrast of dark/ bright, I built this track with an intention
of minimising the amount of tracks but conveying space and
depth. <br />
</p>
</div>
<svg>
<filter id="transmissionerror">
<feColorMatrix
type="saturate"
values="0"
in="SourceGraphic"
result="colormatrix1"
/>
<feColorMatrix
type="matrix"
values="0.95 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0 0 1 0"
in="colormatrix1"
result="colormatrix2"
/>
<feTurbulence
type="turbulence"
baseFrequency="0.002 0.008"
numOctaves="2"
seed="5"
stitchTiles="noStitch"
result="turbulence"
>
<animate
attributeName="baseFrequency"
from="0.002 0.008"
to="0.002 0.01"
dur="3500ms"
repeatCount="indefinite"
/>
<animate
attributeName="numOctaves"
from="1"
to="10"
dur="750ms"
repeatCount="indefinite"
/>
<animate
attributeName="seed"
from="1"
to="100"
dur="10s"
repeatCount="indefinite"
/>
</feTurbulence>
<feColorMatrix
type="saturate"
values="30"
in="turbulence"
result="colormatrix3"
/>
<feColorMatrix
type="matrix"
values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 100 -15"
in="colormatrix3"
result="colormatrix4"
/>
<feDisplacementMap
in="colormatrix2"
in2="colomatrix4"
scale="15"
xChannelSelector="R"
yChannelSelector="A"
result="displacementMap"
/>
</filter>
</svg>
</body>
</html>