-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (55 loc) · 1.21 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
<!doctype html>
<html lang="ja-JP">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mecab-web-worker Example</title>
<style>
:root {
max-width: 50rem;
margin: auto;
font-size: 16px;
}
#log {
width: 100%;
height: 61px;
color: black;
background-color: lightgrey;
overflow-y: scroll;
font-family: monospace;
font-size: 12px;
line-height: 12px;
}
progress {
width: 100%;
}
textarea {
width: 100%;
font-size: 16px;
}
#output {
border: 1px dotted;
}
table {
width: 100%;
}
table,
td {
border: 1px solid;
}
</style>
</head>
<body>
<div>
<div id="log"></div>
<progress id="progress" max="1"></progress>
</div>
<label for="input">Japanese input:</label>
<textarea rows="5" id="input">青森県と秋田県にまたがり所在する十和田湖、御鼻部山展望台からの展望</textarea>
<p>Parsed output with spaces between words:</p>
<p id="output"></p>
<p>Feature table:</p>
<table id="outtable"></table>
<script type="module" src="example.js"></script>
</body>
</html>