-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (38 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>安科编辑器离线版v1.0.2</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<meta http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-eval'; object-src 'none'; style-src 'self' 'unsafe-inline'; img-src data: 'self' http: https:">
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='editor.js'></script>
</head>
<body>
<div id="top-div">
<button id="hide-history-button">隐藏/显示骰子历史</button>
<button id="add-name-button">现在插图带人名</button>
<input type="color" id="font-color-input">
<div id="font-size-slider-div">
<input type="range" min="1" max="100" id="font-size-slider">
</div>
<input type="color" id = "background-color-input">
<div id="pic-size-slider-div">
<input type="range" min="1" max="100" id="pic-size-slider">
</div>
<a id="version-text" target = '_blank'>读取最新版本信息中</a>
</div>
<div id="main-div">
<div id="history-div"></div>
<div id="input-div" contenteditable="true" spellcheck="false"></div>
<div id="picture-div"></div>
<div id="chara-div">
<div id="group-div">
</div>
<form id="pic-check-form"></form>
</div>
</div>
</body>
</html>