-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
41 lines (33 loc) · 1.25 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
<html>
<head>
<link rel=stylesheet type=text/css href=/cyberPunkGenerator/css/pi.css>
<link href='https://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
</head>
<script type=text/javascript>
var nouns = ["The 1%","Capitalism","truth","lies","world","blockchain","paradigm","patriarchy","narrative","government","system","source code","blockchain","hash",Math.floor(Math.random() * 100) + "%","gender"];
var verbs = ["download","blockchain","smash","eat","hack","debate","distribute","decentralize","centralize","topple","fight","hammer","reprogram","subvert"];
function changeMessage() {
var verb = verbs[Math.floor(Math.random()*verbs.length)];
var noun = nouns[Math.floor(Math.random()*nouns.length)];
var phrase = verb + " the " + noun;
phrase = phrase.toUpperCase();
document.getElementById("message").innerHTML= "<h1>" + phrase + "</h1>";
var timeoutID = window.setTimeout(changeMessage, Math.floor(Math.random()*10000));
}
</script>
<div class="vhs-message">
<span id=message>
<h1>BLOCKCHAIN THE PATRIACHY</h1>
</span>
</div>
<div class="screen-bottom">
<div class="line">
<div class="red"></div>
<div class="white"></div>
<div class="green"></div>
</div>
</div>
<script>
changeMessage();
</script>
</html>