-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (93 loc) · 2.99 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.6">
<title>|简·陋| - 并列计算器</title>
<link rel="icon" type="image/x-icon" href="white-favicon.ico" />
<link rel="stylesheet" type="text/css" href="style/main.css" />
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript" src="./script/cookie.js"></script>
<script type="text/javascript" src="./script/web.js"></script>
</head>
<body>
<div class="IBlkBar" id="IExprBar">
<div class="IExprInn">
<div class="IExprHalf">
<span class="IExprH1">表达式:</span>
<div class="IExprText"><textarea id="IExpr" wrap="off"></textarea></div>
</div>
<div class="IExprHalf">
<span class="IExprH1">结果:</span>
<pre id="IExprRslt" class="IExprText IExprBlack"></pre>
</div>
<div onclick="doCalc()" class="IExprBtn IBlk">计算</div>
</div>
<div name="BMove" style="display: none;"></div>
</div>
<div id="IValBar" class="IBlkBar">
<div class="IBlkOut">
<div class="IBlk IBlkNofloat">
列宽<input oninput="wcWidth(this.value)" value="1" id="IValWidth" type="number" />
</div>
</div><br id="IAddVal" />
<div class="IBlkOut">
<div class="IBlk" onclick="goReg('Val')">> 新变量</div>
</div>
<div name="BMove"></div>
</div>
<div id="IOpeBar" class="IBlkBar"><br id="IAddOpe" />
<div class="IBlkOut">
<div class="IBlk" onclick="goReg('Ope')">> 新运算</div>
</div><br />
<div class="IBlkOut">
<div class="IBlk" onclick="goOut(true)">
> 导出
</div>
</div><br />
<div class="IBlkOut">
<div class="IBlk" onclick="goOut(false)">
> 导入
</div>
</div>
<div class="IOpeReset">
<a href="./help.html">点我查看指南</a>
<div style="height: 0.2cm;"></div>
<a href="javascript:reset();">导入基础配置</a>
<div style="height: 0.2cm;"></div>
<a href="javascript:clearOaV();">清空配置</a>
</div>
<div name="BMove"></div>
</div>
<div id="IFunHov" class="IInpHov">
<div class="IInpBar">
定义<span id="IFunTip"></span>:<input id="IFunName" class="IInpSmall" type="text" />
<hr class="IInpLine" /><br />
<textarea id="IFunCode"></textarea>
<div class="IInpBtnBox">
<button onclick="regFunSure()">确定</button>
<button onclick="regFunCanc()">取消</button>
</div>
</div>
</div>
<div id="IOutHov" class="IInpHov">
<div class="IInpBar">
导<span id="IOutTip"></span>变量和运算
<hr class="IInpLine" /><br />
请<span id="IOutOpe"></span>数据串:
<textarea id="IOutCode"></textarea>
<div class="IInpBtnBox" id="IOutBtn2">
<button onclick="outSure()">确定</button>
<button onclick="outCanc()">取消</button>
</div>
<div class="IInpBtnBox" id="IOutBtn1">
<button onclick="outCanc()">完成</button>
</div>
</div>
</div>
<span style="position: fixed;left: 2px;bottom: 2px;z-index: 999;font-size: 0.35cm;">
|简·陋| - 并列计算器<br />
Ver 1.10226.0
</span>
</body>
</html>