-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" onclick='refreshPage()'>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Fantastic Creatures</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<script type="text/javascript">
function refreshPage() {
location.reload(true);
}
</script>
</head>
<body>
<!-- "as long as im not in fullscreen nothing can hurt me"
A small study in how 3AM challenge YouTube thumbnails impact our notions of emotion and affect: this single serving site morphs such exaggerated facial expressions into fantastical creatures that populate a world devoid of subtlety. Loosely grouped into four categories (invertebrate, mammal, plant life, and urban legend), the strange and mysterious beings that emerge from this YouTube subgenre demand to be seen.
See also: https://knowyourmeme.com/memes/the-3am-challenge -->
<div id = 'container'>
<!-- image 1: original youtube thumbnail -->
<div id = 'orig'>
</div>
<!-- image 2: BigBIGAN generated image -->
<div id = 'gen'>
</div>
<!-- image 3: enhaned and isolated final creature -->
<div id = 'fin'>
</div>
</div>
</body>
</html>