-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (107 loc) · 4.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"
/>
<title>The AI Times</title>
</head>
<body>
<div id="page">
<div id="winnersEdition">WINNERS EDITION</div>
<div id="paperName">
<div class="nameSubtext">The</div>
<div class="nameMain">A.I.</div>
<div class="nameSubtext">Times</div>
</div>
<div id="captionScreen" class="screen enabled">
<div class="tagLine">We Report The News Before The News</div>
<div id="playerInputContainer">
<textarea id="playerInput" placeholder="Enter caption here"></textarea>
</div>
<div class="label">Caption this image</div>
<div id="captionImage"><img id="targetImage" /></div>
<div class="timer">
<div id="captionTimer" class="timerBar"></div>
</div>
</div>
<div id="reviewScreen" class="screen off">
<div id="headline" class="headline">Trike Rocket!</div>
<div class="subline">
<div class="bylineSection">
<div id="date" class="date">Thu Nov 21</div>
<div id="subtitle" class="byline">
Woman Sets Speed Record with Megaphone Power
</div>
</div>
<div class="paperImage">
<img id="paperImage1" src="src/assets/images/1.png" />
</div>
</div>
<div id="story" class="story">
In a bizarre twist on speed racing, Karen Vox just set a new record
using nothing but her voice—and a trusty megaphone. Barreling down the
street on a toddler-sized trike, Vox reached ear-splitting speeds as
she yelled her way to victory. Locals are still recovering from the
sonic boom!
</div>
<div class="timer">
<div id="reviewTimer" class="timerBar"></div>
</div>
</div>
<div id="voteScreen" class="screen off">
<div class="label">Pick your favorite article</div>
<div id="articles">
<div class="voteButton voteButtonSelected">Trike Rocket!</div>
<div class="voteButton">Megaphone Mayhem!</div>
<div class="voteButton">Full Throttle Talk!</div>
<div class="voteButton">Shoutout Speedster!</div>
</div>
<div class="timer">
<div id="voteTimer" class="timerBar"></div>
</div>
</div>
<div id="resultScreen" class="screen off">
<div id="resultHeadline" class="headline">Trike Rocket!</div>
<div class="subline">
<div class="bylineSection">
<div id="resultDate" class="date">Thu Nov 21</div>
<div id="resultSubtitle" class="byline">
Woman Sets Speed Record with Megaphone Power
</div>
</div>
<div class="paperImage">
<img id="paperImage2" src="src/assets/images/1.png" />
</div>
</div>
<div id="resultStory" class="story">
In a bizarre twist, a father of two was replaced by a giant hamster,
and his family didn’t bat an eye. The hamster, nicknamed Cheddar,
reportedly handled chores and bedtime stories seamlessly. “He’s just a
bit fuzzier,” said one child, sparking a social media frenzy over the
furry swap!
</div>
<div id="footer">
<div id="author">
<div class="date">Written By</div>
<div class="playerSection">
<img
id="playerAvatar"
src="https://developers.rune.ai/img/avatar-placeholder.png"
class="avatar"
/>
<div id="playerName">Coke and Code</div>
</div>
</div>
<div id="share">
<div id="shareButton">SHARE</div>
</div>
</div>
</div>
</div>
<script type="module" src="/src/logic.ts"></script>
<script type="module" src="/src/client.ts"></script>
</body>
</html>