This repository has been archived by the owner on Aug 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (75 loc) · 2.77 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
<!DOCTYPE html>
<html>
<head>
<title>Clocks</title>
<link rel="shortcut icon" href="assets/icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="./lib/p5.min.js"></script>
<script src="./lib/p5.dom.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="unselectable">
<div class="content">
<h1>Change the clock properties!</h1>
<div class="grid">
<div>
<label class="switch">
<input type="checkbox" id="smooth">
<span class="slider round"></span>
<p><b> Smooth Clock </b></p>
</label>
</div>
<div>
<label class="switch">
<input type="checkbox" id="ampm">
<span class="slider round"></span>
<p><b> 12h Clock </b></p>
</label>
</div>
<div>
<label class="switch">
<input type="checkbox" id="image">
<span class="slider round"></span>
<p><b> Image Clock </b></p>
</label>
</div>
<div>
<label class="switch">
<input type="checkbox" id="date">
<span class="slider round"></span>
<p><b> Show date </b></p>
</label>
</div>
</div>
</div>
<div class="content">
<h1>Change the background image!</h1>
<h2>Paste the image here!</h2>
<div id="grid2">
<input type="text" id="link">
<span id="carita" class="fa"></span>
<span id="caritaTxt"></span>
</div>
</div>
<div class="content" id="pallette">
<h1>Choose your clock pallette!</h1>
</div>
<div class="content">
<h1>Choose your clock style!</h1>
<div class="vertical-menu">
<a href="./Simple/" class="clockBtn">Simple Clock</a>
<div class="grid2">
<a href="./Starfield/?stars=false" class="clockBtn">Starfield Clock</a>
<a href="./Starfield/?stars=true" class="clockBtn">Starfield Glow Clock</a>
</div>
<a href="./Snow/" class="clockBtn">Snow Clock</a>
<div class="grid2">
<a href="./Fireworks/?heart=false" class="clockBtn">Fireworks Clock</a>
<a href="./Fireworks/?heart=true" class="clockBtn">Heart Fireworks Clock</a>
</div>
</div>
</div>
<script src="sketch.js"></script>
</body>
</html>