2022-12-16 17:38:52 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-12-16 18:28:55 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="robots" content="noindex"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png?v=1"/>
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png?v=1"/>
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png?v=1"/>
|
|
|
|
<link rel="manifest" href="/assets/icons/site.webmanifest?v=1"/>
|
|
|
|
<link rel="shortcut icon" href="/assets/icons/favicon.ico?v=1"/>
|
|
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
|
|
<meta name="msapplication-config" content="/assets/icons/browserconfig.xml?v=1"/>
|
2022-12-16 21:21:49 +01:00
|
|
|
<meta name="theme-color" content="#ffffff"/>
|
2022-12-20 13:29:52 +01:00
|
|
|
<link href="grid.css?v=2" rel="stylesheet"/>
|
2022-12-16 18:28:55 +01:00
|
|
|
<meta name="author" content="Christoph Hagen"/>
|
|
|
|
<title>Bottle Cap Grid | CH Maker Space</title>
|
|
|
|
<meta name="description" content="A grid view of all bottle caps in my collection. Try to create an image with them."/>
|
2022-12-16 17:38:52 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-20 00:44:11 +01:00
|
|
|
<div id="top-bar">
|
2022-12-20 12:52:31 +01:00
|
|
|
<div class="top-button" onclick="toggleColors()">Toggle colors</div>
|
|
|
|
<div class="top-button" onclick="exportCapArrangement()">Save</div>
|
|
|
|
<label class="top-button" for="caps-upload">Load</label>
|
|
|
|
<input type="file" id="caps-upload" style="display:none"/>
|
|
|
|
<div class="top-button" onclick="resetCaps()">Reset</div>
|
2022-12-20 00:44:11 +01:00
|
|
|
</div>
|
2022-12-16 17:38:52 +01:00
|
|
|
<div id="image-canvas">
|
|
|
|
<div id="selected-cap-circle"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2023-01-15 14:01:23 +01:00
|
|
|
<script src="count.js"></script>
|
2022-12-20 13:29:52 +01:00
|
|
|
<script src="grid.js?v=2"></script>
|
2022-12-16 17:38:52 +01:00
|
|
|
</html>
|