-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathegg.html
More file actions
86 lines (69 loc) · 3.58 KB
/
egg.html
File metadata and controls
86 lines (69 loc) · 3.58 KB
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
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="zh-CN">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Description" content="蛋仔派对:蛋码模拟器,在线拼接蛋码程序">
<head>
<title>蛋码模拟器</title>
<link rel="stylesheet" href="/static/sycss.css">
</head>
<body>
</div>
<h3 style="display: inline;margin-left: 10px;">蛋码模拟器</h3>
<a href="/egcp">制作蛋码</a>
<input type="text" id="EGCname" maxlength="16" placeholder="作品名称"
style="background-color: aquamarine;border-radius: 5px;">
<!-- <a href="/egcProducer" target="_blank">前往制作蛋码</a> -->
<br>
<div id="operatebar1" class="operatebar">
<p id="noticeselect" style="font-weight: bold;display: inline;margin: 5px;">选中积木显示其名称</p>
<button id="saver" onclick="saveEGC()" class="oper" title="json格式">保存作品</button>
<button id="opener" onclick="openEGC()" class="oper" title="会清空已有蛋码">打开作品</button>
<input type="file" style="display: none;" id="fileopener" accept=".json">
<button id="learner" onclick="learn()" class="oper" title="暂无">查看文档</button>
<button id="ffll" onclick="changeflex()" class="oper" title="多蛋码排布方向">更换排列</button>
</div>
<div id="operatebar2" class="operatebar">
<div id="noticebox">
<p id="notice" style="font-weight: bold;display: inline;margin: 5px;">暂无提示</p>
</div>
<button id="deler" onclick="deleteEGC()" class="oper disoper" title="删除选中蛋码">删除</button>
<button id="copyer" onclick="copyEGC()" class="oper disoper" title="复制蛋码行">复制</button>
<button id="paster" onclick="pasteEGC()" class="oper disoper" title="直接粘贴蛋码行">粘贴</button>
</div>
<div id="mainmain" style="white-space:nowrap;">
<div id="main"></div>
<div id="rightarea">
<span id="selector">
</span>
<div id="creater" style="vertical-align: bottom;">
<input id="vname" type="text" placeholder="输入名称..." maxlength="9"
style="background-color: aquamarine;border-radius: 5px;width: 80%;">
<br>
<button id="newV" onclick="createV('@',0)"
style="background-color: rgb(208, 18, 208);border-radius: 5px;font-weight: bold;color: white;"
title="@">创建变量</button>
<button id="newL" onclick="createV('@',1)"
style="background-color: rgb(29, 187, 189);border-radius: 5px;font-weight: bold;color: white;"
title="@">创建列表</button>
<select id="vtypes" style="background-color: cyan;"></select>
<br>
<button id="newV2" onclick="createV('×')"
style="background-color: rgb(208, 18, 208);border-radius: 5px;font-weight: bold;color: white;"
title="×">创建自定义属性</button>
</div>
</div>
<div id="rrarea">
<div id="navi"></div>
<div style="height: 90px;background-color: darkturquoise;
border: 3px solid rgb(20, 125, 167);">
<button style="width: 100%;" class="oper" onclick="query(prompt('查找蛋码...'))">搜索</button>
</div>
</div>
</div>
<div class="operatebar" title="谢谢支持">
Made by b站水杨酸酸
</div>
<script src="/static/syjs.js"></script>
</body>
</html>