-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>XKCD Self-Description Implemented</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet' type='text/css' media='screen' href='styles.css'>
<link rel="preload" href="xkcd-script.woff" as="font">
<link rel="preload" href="xkcd-script.ttf" as="font">
</head>
<body>
<noscript><p class="noscript">Enable Javascript.</p></noscript>
<h1>XKCD Self-Description (#688) - Implemented</h1>
<table id="panels"><tr>
<td><canvas id="slide1" class="slide"></canvas></td>
<td><canvas id="slide2" class="slide"></canvas></td>
<td><canvas id="slide3" class="slide"></canvas></td>
</tr></table>
<p>What is happening: in each iteration, the charts are getting updated
by the new data measured from the rendered charts.
</p>
<p>This is an implementation of the web-comic: <a href="https://xkcd.com/688/">https://xkcd.com/688/</a>
</p>
<p>Source code: <a href="https://github.com/simzer/xkcd-self-description">https://github.com/simzer/xkcd-self-description</a></p>
<p>Used font: <a href="https://github.com/ipython/xkcd-font">xkcd-font</a></p>
<p><b>Powered by </b><a href="https://github.com/vizzuhq/vizzu-lib"><img id="vizzu-logo" src="https://lib.vizzuhq.com/0.3.0/images/logo.svg" alt="VIZZU"></a></p>
<script type="module" src="main.js"></script>
</body>
</html>