-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextplay.html
77 lines (63 loc) · 2.62 KB
/
nextplay.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
<!DOCTYPE html style=' overflow: hidden; '>
<html lang="zh-cmn-Hans">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>ZeroCatPython编辑器</title>
<link rel="shortcut icon" href="./staticfile/img/siteicon.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="./mdui2/mdui.css" id="mdui_css" />
<link rel="stylesheet" href="./layui/css/layui.css" />
<link rel="stylesheet" href="./css/main.css" />
<script>
apihost = "https://zerocat.houlangs.com";
frontend = "https://zeronext.wuyuan.dev";
s3file = "https://s4-1.wuyuan.1r.ink";
</script>
<link id="layui_theme_css" rel="stylesheet" />
<script type="text/javascript" src="./js/jquery.3.7.1.js"></script>
</head>
<body class="mdui-theme-auto mdui-theme-accent-blue mdui-loaded">
<div style="height: 100vh">
<link rel="stylesheet" href="https://unpkg.com/@waline/client@v3/dist/waline.css" />
<div id="canvas_box" style="height: 50vh">
<div id="pythoncanvas"></div>
</div>
<div style="background-color: rgba(0, 0, 0, 0); height: 50vh">
<textarea id="output" style="height: 100%; width: 100%; border: 0" disabled>
终端打印输出区</textarea>
</div>
<div style="
position: fixed;
left: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
margin: 10px;
">
<mdui-button id="run-code" onclick="run_it()" variant="filled" icon="play_arrow" style="">运行</mdui-button>
<mdui-button onclick="run_clear()" variant="tonal" icon="clear">清除</mdui-button>
</div>
</div>
<div style="display: none">
<textarea id="code_textarea"></textarea>
</div>
</body>
<link href="./font1.css" rel="stylesheet" />
<script type="text/javascript" src="./layui/layui.all.js"></script>
<script src="./mdui2/mdui.global.js"></script>
<script>
mdui.setColorScheme("#2087fd");
</script>
</html>
<script type="text/javascript" src="./static/CodeMirror.js"></script>
<script type="text/javascript" src="./static/js/file-saver.js"></script>
<script type="text/javascript" src="./static/skulpt.min.js"></script>
<script type="text/javascript" src="./static/skulpt-stdlib.js"></script>
<script type="text/javascript" src="./static/mode/python.js"></script>
<script type="text/javascript" src="./static/js/show-hint.js"></script>
<script type="text/javascript" src="./layui/layui.all.js"></script>
<script type="text/javascript" src="./static/public.js"></script>
<script type="text/javascript" src="./static/next_python_play.js"></script>