-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (125 loc) · 5.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/modal.css">
<link rel="icon" type="text/svg" href="logo.svg">
<title>hogemoji script editor v0.03 beta</title>
</head>
<body>
<!---
開発に追われない日々()
vwvwvwwvvwvwwvwvwwwvwvwvwvwvw
#############################
#############################
#############################
#############################
#############################
#############################
java vm版作りたい
開発に追われる日々()
-->
<header>
<ul class="menu">
<span style="border:1px solid #aaaaaa;color:#888888;font-size:1.2em;">hogemoji script editor v0.03 beta</span>
<li>
ファイル
<ul>
<li onclick="download_code()">保存</li>
<li><a href="#open">開く</a></li>
</ul>
</li>
<li>
ドキュメント
<ul>
<li><a href="https://rihitosan.com/blog/hogemoji_docintr.html">紹介</a></li>
<li><a href="https://github.com/frozelab/hogemoji_script">Github</a></li>
</ul>
</li>
</ul>
</header>
<div class="contents">
<div class="list">
<div id="help_coding">
<li>Coding help</li>
<br>
<span class="help_button" style="border: solid 2px #ff00ff;" onclick='make_code("function")'>関数(命令)を作成</span>
</div>
<div id="emoji_list">
<span style="color:#00ffaa;">basic</span>
<table>
<tr>
</tr>
</table>
<hr>
<span style="color:#6aa1f3;">window</span>
<table>
<tr>
</tr>
</table>
</div>
</div>
<div class="list">
<div class="contents main" >
<div id="line_num">
</div>
<div contenteditable="true" id="editor">
</div>
</div>
<button class="button" onclick="run()">run</button>
<div id="output">
</div>
</div>
</div>
<!--modal window-->
<div class="modal-wrapper" id="open">
<a href="#!" class="modal-overlay"></a>
<div class="modal-window">
<div class="modal-content">
<div id="upFileWrap">
<div id="inputFile">
<!-- ドラッグ&ドロップエリア -->
<p id="dropArea">ここにファイルをドロップしてください<br>または</p>
<!-- 通常のinput[type=file] -->
<div id="inputFileWrap">
<input type="file" name="uploadFile" id="uploadFile" accept=".hge">
<div id="btnInputFile"><span>ファイルを選択する</span></div>
<div id="btnChangeFile"><span>ファイルを変更する</span></div>
</div>
</div>
</div>
</div>
<a href="#!" class="modal-close">×</a>
</div>
</div>
<!--gui support window (game)-->
<div class="modal-wrapper" id="gui">
<a href="#!" class="modal-overlay"></a>
<div class="modal-window">
<div class="modal-content">
<div id="help_content">
<canvas width="500" height="400" id="gui_support" style="background:#000000;"></canvas>
</div>
</div>
<a href="#!" class="modal-close">×</a>
</div>
</div>
<!--coding help window-->
<div class="modal-wrapper" id="help_window">
<a href="#!" class="modal-overlay"></a>
<div class="modal-window">
<div class="modal-content">
<div id="help_content">
<center>
<span style="color:#fff;">comming soon...</span>
</center>
</div>
</div>
<a href="#!" class="modal-close">×</a>
</div>
</div>
</body>
<script src="editor.js"></script>
<script src="window.js"></script>
<script src="main.js"></script>
</html>