io页面相关

This commit is contained in:
Caijinglong
2018-08-07 17:36:26 +08:00
commit 8eb9601479
4 changed files with 2814 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

44
index.html Normal file
View File

@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="scaffolded-by" content="https://github.com/google/stagehand"/>
<title>hello_world</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico">
<script defer src="main.dart.js"></script>
</head>
<body>
<div>
<div id="input" class="textarea">
<div class="top">
将json粘贴至左边
</div>
<textarea id="json" title="json字符串"></textarea>
<div>
<button id="format">格式化</button>
</div>
</div>
<div id="output" class="textarea">
<div class="top"></div>
<div class="result_title">
类名称
<input id="out_entity_name"/>
<input type="checkbox" id="use_json_key"/><span id="check_label">jsonKey annotation</span>
<input type="checkbox" id="camelCase"/><span id="camelCaseLabel">use camelCase</span>
</div>
<div id="file_name"></div>
<textarea id="result" title="结果"></textarea>
<div><button id="copy">复制</button></div>
</div>
</div>
</body>
</html>

2729
main.dart.js Normal file

File diff suppressed because it is too large Load Diff

41
styles.css Normal file
View File

@@ -0,0 +1,41 @@
@import url(https://fonts.googleapis.com/css?family=Roboto);
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
.top {
height: 4vh;
text-align: center;
padding-top: 1vh;
}
.textarea {
width: 50%;
height: 90%;
text-align: center;
float: left;
}
textarea {
width: 90%;
height: 80vh;
}
.result_title {
padding-bottom: 15px;
}
#result {
width: 90%;
height: 70vh;
}
.out_entity_name {
height: 40px;
}