forked from mindpin/chatflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·51 lines (48 loc) · 2.33 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
<!DOCTYPE html>
<html lang='zh'>
<head>
<title>ChatFlow Converter | 对话泡泡转换器</title>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<link href='dist/css/ui.css' rel='stylesheet'>
</head>
<body style="display:-webkit-flex;flex-direction:column;">
<div id='chatbbl' style="flex:1;" class='panel chatbox' data-yaml='yaml/test.yaml'></div>
<div style="flex:1;background-color:rgb(252,224,131);margin:20px;padding:10px;float:left;">
<textarea id='manual_input' style="min-width:94%;height:240px;margin:10px;border-radius:5px;">
A:
一切皆有可能!
B:
Impossible is Nothing!
C:
只管去做~
动起手来!
D:
Just Do It~
Keep Your Hands Dirty!
</textarea><br/>
<center>
<button id="replay_btn">回放聊天记录</button>
<button id="share_btn">生成分享链接</button>
</center>
</div>
<div style="background-color:rgba(255,255,255,0.1);text-align:center;">
<p>项目源码 - <a href="https://github.com/hintsnet/chatflow">hintsnet/chatflow on GitHub</a></p>
<p>头像图片来源 - <a rel="nofollow" href="https://www.vecteezy.com">Vector illustration credit: www.vecteezy.com</a></p>
</div>
<script src='lib/js-yaml.js' type='text/javascript'></script>
<script src='lib/lz-string.min.js' type='text/javascript'></script>
<script src='lib/jquery-2.1.1.min.js' type='text/javascript'></script>
<script src='dist/js/plugins/jquery.typing-string.js' type='text/javascript'></script>
<script src='dist/js/game/utils.js' type='text/javascript'></script>
<script src='dist/js/game/game.js' type='text/javascript'></script>
<script src='dist/js/game/npc.js' type='text/javascript'></script>
<script src='dist/js/game/script_runner.js' type='text/javascript'></script>
<script src='dist/js/game/chatbox.js' type='text/javascript'></script>
<script src='dist/js/game/chat_sentence.js' type='text/javascript'></script>
<script src='dist/js/game/chatpop.js' type='text/javascript'></script>
<script src='dist/js/game/questionpop.js' type='text/javascript'></script>
<script src='dist/js/conv.js' type='text/javascript'></script>
<script src='dist/js/ui.js' type='text/javascript'></script>
</body>
</html>