-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 2.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>Guitar Chord Variation</title>
<!-- icon generated from https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html -->
<link rel="icon" type="image/png" href="ss.png">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/src/style.scss">
</head>
<body style="min-width: 200px; padding-top: 16px;">
<div class="container">
<header>
<h3>
Easy guitar <strong>chord variation</strong> finder.<br>
<small class="color-muted">Find your own chord variation and tell your friends.</small>
</h3>
</header>
<main>
<form action="#dumb">
<ChordRoot type="select">
<options values="C C# D D# E F F# G G# A A# B"></options>
</ChordRoot>
<ChordVariation type="select">
<options values="maj maj7 7 min min7 sus aug aug7 dim dim7"></options>
</ChordVariation>
<input type="checkbox" value="advanced" text="Advanced mode">
<if condition="advanced">
<ManualChord type="text"></ManualChord>
<ManualTuning type="text"></ManualTuning>
<button onclick="reset()">Reset</button>
<button class="button-primary" onclick="play()">Play</button>
</if>
</form>
<Guitar orientation="vertical" frets="13" with-sound="true">
<String tune="E"></String>
<String tune="A"></String>
<String tune="D"></String>
<String tune="G"></String>
<String tune="B"></String>
<String tune="E"></String>
</Guitar>
</main>
<footer>
<br>
<!-- github stars -->
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user=rafgugi&repo=guitar-chord-variation&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="80px" height="20px"></iframe>
<!-- github clone -->
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user=rafgugi&repo=guitar-chord-variation&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="80px" height="20px"></iframe>
<br>
</footer>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>