-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.82 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
<!--
Based on placards for art (https://www.google.com/search?q=art+placard&tbm=isch)
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<!-- Note to maintainers: this name must be the same as the package name and the name referenced in cstv-wm/wallwm.py or the window manager will STOP WORKING -->
<title>FOOTRON_PLACARD</title>
<script src="tailwind.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="w-full h-screen bg-transparent relative">
<div
class="h-screen details-container absolute"
id="slideable-background"
>
<div class="text-details">
<h1 id="title" class="text-4xl font-semibold"></h1>
<h2 id="artist"></h2>
<!-- TODO: Should we add an option to set the year?-->
<p id="description"></p>
</div>
</div>
<div class="qr-info" id="qr-box">
<canvas id="qr-bg-canvas" data-transition-in></canvas>
<div class="qr-bg-gradient"></div>
<div class="qr-info-content">
<!-- <p class="qr-hint">Explore<br/><b class="experience-name">Realtime Tracking-by-Detection of Human Motion</b></p>-->
<!-- <p class="qr-hint">Interact with<br/><b>video playback</b></p>-->
<span class="material-icons-outlined text-4xl" id="qr-hint-icon"
>sports_esports</span
>
<div class="qr-hint">
<div id="qr-hint-content-container">
<div id="qr-hint-content-height">
<span>Scan to</span>
<span id="qr-hint-content">control<br />this experience</span>
</div>
</div>
</div>
<img id="qr" />
</div>
</div>
</div>
<script src="./renderer.js" type="module"></script>
</body>
</html>