-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (59 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<title> Notate.Tabla </title>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="notate_tabla.css">
<script src=notate_tabla.js></script>
</head>
<body>
<div class="wrapper">
<header class="header">
<big>Notate.Tabla</big>
</header>
<aside class="sidebar">
Bols & Phrases
<span id=bols></span>
<span id=phrases></span>
</aside>
<article class="content">
Type tabla bols here, or click on bols or phrases on the left.
<textarea id="notation" rows="10" cols="100">
धा - - त धिं - - त धिं - धिं - धा - - -
धा - - त धिं - - त धिं - धिं - धा - - -
धा - - त तिं - - त तिं - तिं - ता - - -
ति र कि ट धिं - - त धिं - धिं - धा - - -
</textarea>
<br>Bols per beat: <input id="bols_per_beat" value="4" style="width: 4em">
Beats per line: <input id="beats_per_line" type="number" value="7" style="width: 4em">
</p>
<input type="radio" id="devanagari" name="format" value="devanagari" checked>Devanagari</input>
<input type="radio" id="english" name="format" value="english">English</input>
<button id="show_text" type="button" class="collapsible">Show Formatted Text</button>
<div class="coll_content">
<span id=formatted>
<table class="zui-table formatted_rom"><tbody></tbody></table>
<table class="zui-table formatted_dev"><tbody></tbody></table>
</span>
</div>
<button onclick="makeTihai()">Make Tihai</button>
<button onclick="copyNotationText()">Copy Formatted text as Text</button>
<button onclick="copyNotation()">Copy Formatted text as HTML</button>
<button onclick="createNotation()"> Generate Formatted Text </button>
</p>
<button type="button" class="collapsible">Show Vishwamohini Notation</button>
<div class="coll_content">
<pre><span id=converted></span></pre>
</div>
<button onclick="copyVishwamohini()">Copy Vishwamohini Notation</button>
<button onclick="createVishwamohini()"> Generate Vishwamohini Notation </button>
</article>
<footer class="footer">
<a href=README.html target="_blank">Help</a>
</footer>
</div>
</body>
</html>