-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.18 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Use title if it's in the page YAML frontmatter -->
<title>Demos</title>
<!--script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/p5.js"></script-->
<script src="js/lib/p5.midi.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
</head>
<body>
<main>
<article class="active demo-item js--clock">
<div class="clock">
<div class="clock-face">
<!--div class="hand js--hour-hand"></div>
<div class="hand js--min-hand"></div-->
<div class="hand js--second-hand"></div>
</div>
</div>
<div class="clock solid">
<div class="clock-face">
<!--div class="hand js--hour-hand"></div>
<div class="hand js--min-hand"></div-->
<div class="hand js--second-hand"></div>
</div>
</div>
</article>
</main>
</body>
</html>