-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (80 loc) · 3.3 KB
/
index.html
File metadata and controls
84 lines (80 loc) · 3.3 KB
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
<!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" />
<title>Arcade collection of AI games</title>
<link rel="stylesheet" href="./style/style.css?v=1.0" />
<!-- <link rel="stylesheet" href="./style/themes.css?v=1.0" /> -->
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet" />
</head>
<body>
<div class="glow-box">
<div class="inner-ring"></div>
<div class="content">
<main>
<div id="left">
<header>
<h1 id="logo">AiRCADE</h1>
</header>
<div id="games"></div>
<div class="key-block-wrapper">
<button id="open-disclaimer" class="disclaimer-link">Disclaimer</button>
<div class="key-block">
<div class="key">↑</div>
<p>Go up</p>
<div class="key">↓</div>
<p>Go down</p>
<div class="key">⏎</div>
<p>Start game</p>
</div>
</div>
</div>
<div id="right">
<div id="preview">
<div id="preview-media">
<img id="preview-image" src="" alt="" />
<video id="preview-video" muted autoplay loop playsinline></video>
</div>
<div id="preview-description" class="preview-box"></div>
<div id="credits" class="preview-box"></div>
</div>
</div>
</main>
</div>
</div>
<div id="overlay" class="overlay hidden">
<div class="overlay-content">
<button id="close-overlay">✕</button>
<iframe id="game-iframe" src="" frameborder="0"></iframe>
<div id="disclaimer-text" class="hidden">
<img
src="./img/aixdesignlogo_white.png"
alt="AI X DESIGN Logo"
style="width: 50%; height: auto" />
<h2>Disclaimer</h2>
<p>
This website is a curated collection of independently created games showcased for
educational and entertainment purposes at AI X DESIGN - SLOW AI Festival. All games are
linked to their original sources and are the property of their respective creators. The
creators of these games are not affiliated with AI X DESIGN - SLOW AI, and inclusion in
this showcase does not imply endorsement or partnership. <br /><br />If you are a game
creator and would like your work removed or updated, please contact us at
<a href="mailto:hello@aixdesign.co">hello@aixdesign.co</a>. <br /><br /><a
href="http://www.freepik.com"
>Background designed by rawpixel.com / Freepik</a
>
</p>
</div>
<div id="more-games-overlay-text" class="hidden"></div>
</div>
</div>
<div class="pixel-overlay"></div>
<script src="https://unpkg.com/colorthief@2.4.0/dist/color-thief.min.js" defer></script>
<script src="./js/more_games.js" defer></script>
<script src="./js/games.js" defer></script>
<script src="./js/script.js" defer></script>
</body>
</html>