forked from Rabbit-Converter/Rabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·78 lines (68 loc) · 2.82 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
<html>
<head>
<title>Zawgyi to Unicode</title>
<meta charset="utf-8"/>
<script src="rabbit.js"></script>
<style type="text/css">
body {
text-align: center;
color: #242424;
}
#container {
width: 900px;
margin: 0 auto;
}
#cFont {
padding: 10px;
color: #5799DA;
}
textarea {
padding: 10px;
border: 1px solid #5799DA;
}
.btn {
padding: 10px 20px;
border: 2px solid #3E9AF5;
background: #fff;
}
.btn:hover {
background: #e9e9e9;
}
</style>
</head>
<body>
<div id="container">
<header>
<img src="rabbit_100.png" align="middle">
<h2 style="display:inline;font-family:Helvetica,Arial,sans-serif;padding-left:5px">Rabbit</h2>
</header>
<h3 id="cFont">Current: Unicode Text</h3>
<textarea rows="10" cols="10" id="sample" style="width:100%;font-size:18px;font-family:'MON3 Anonta 1'">သီဟိုဠ်မှ ဉာဏ်ကြီးရှင်သည် အာယုဝဍ်ဎနဆေးညွှန်းစာကို ဇလွန်ဈေးဘေးဗာဒံပင်ထက် အဓိဋ္ဌာန်လျက် ဂဃနဏဖတ်ခဲ့သည်။
ယေဓမ္မာ ဟေတုပ္ပဘဝါ တေသံ ဟေတုံ တထာဂတော အာဟ တေသဉ္စ ယောနိရောဓေါ ဧဝံ ဝါဒီ မဟာသမဏော။
(မြန်မာပြန်)
မြတ်စွာဘုရားရှင်သည် ရှေးကပြုခဲ့ဖူးသော အကြောင်းတရားကြောင့် ဖြစ်ပေါ်လာကြသော အကျိုးတရားကို ဟောကြားတော်မူသည်။
ထိုအကြောင်းတရားတို့၏ ချုပ်ငြိမ်းရာတရားတို့ကိုလည်း ဟောတော်မူ၏။
ရဟန်းကြီးဖြစ်သော ဗုဒ္ဓမြတ်စွာဘုရားသည် ဤသို့သောအယူရှိတော်မူ၏။
</textarea>
<p>
<input type="button" value="Uni > ZG" onclick="convert()" class="btn">
<input type="button" value="ZG > Uni" onclick="convertuni()" class="btn">
</p>
<p>
Found a bug ? Please , open <a href="https://github.com/Rabbit-Converter/Rabbit/issues/new">new issue</a>.
</p>
</div>
<script>
function convert(){
document.getElementById('sample').value=Rabbit.uni2zg(document.getElementById('sample').value);
document.getElementById('sample').style.fontFamily="Zawgyi-One";
document.getElementById('cFont').innerHTML = 'Current: Zawgyi Text';
}
function convertuni() {
document.getElementById('sample').value=Rabbit.zg2uni(document.getElementById('sample').value);
document.getElementById('sample').style.fontFamily="'MON3 Anonta 1'";
document.getElementById('cFont').innerHTML = 'Current: Unicode Text';
}
</script>
</body>
</html>