forked from geeves/camelot-wheel
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
31 lines (30 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Camelot Wheeeeel</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<script type="text/javascript" src="./dist/cw.js"></script>
</head>
<body>
<div id="main">
</div>
<footer>
<p>An interactive <a href="https://berktmusic.medium.com/unlocking-the-magic-of-music-with-the-camelot-wheel-bccba17f1d00">Camelot Wheel</a>, based on the "<a href="https://en.wikipedia.org/wiki/Circle_of_fifths">circle of fifths</a>", for DJs interested in <a href="https://en.wikipedia.org/wiki/Harmonic_mixing">harmonic mixing</a>.</p>
<p>Can be used off-line. Source & bug reports <a href="https://github.com/mxmilkiib/camelot-wheel">here</a>.</p>
</footer>
<script>
// Registering the service worker
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/service-worker.js')
.then(registration => {
console.log('Service Worker registered with scope:', registration.scope);
})
.catch(error => {
console.error('Service Worker registration failed:', error);
});
}
</script>
</body>
</html>