-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.devel.html
69 lines (69 loc) · 1.63 KB
/
index.devel.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>MC MJ TTS</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript" src="./howler.js/howler.min.js"></script>
<script type="text/javascript" src="./clips.js"></script>
<script type="text/javascript" src="./names.js"></script>
<script type="text/javascript" src="./jquery.holdEvent.js"></script>
<script type="text/javascript" src="./func.devel.js"></script>
<style type="text/css">
.container {
border: 1px dashed #666;
margin: 1em;
padding: 1em;
}
.clear {
clear: both;
margin: -4px;
visibility: hidden;
}
h1 {
display: inline;
}
ul {
width: 100%;
padding: 6px;
list-style-type: none;
min-height: 1em;
}
ul li {
border: 1px solid;
padding: 5px;
cursor: pointer;
float: left;
margin: 0.2em;
}
#say {
height: 2em;
}
.talking {
background-color: #FEE;
}
</style>
</head>
<body>
<div class="container">
<h1>詞庫</h1>
<ul id="tags"></ul>
<hr class="clear" />
</div>
<input type="radio" name="zone" value="1" checked="checked">Zone1</input>
<input type="radio" name="zone" value="2">Zone2</input>
<div class="container">
<h1>排字區 1</h1>
<button id="say">說吧!</button>
<ul id="tokens1"></ul>
<hr class="clear" />
</div>
<div class="container">
<h1>排字區2</h1>
<ul id="tokens2"></ul>
<hr class="clear" />
</div>
<!-- yes, you can duplicate, extend it without my permission -->
</body>
</html>