-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplaces.html
43 lines (37 loc) · 1.37 KB
/
replaces.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UniSerialReplaces 連続置換機ツール</title>
<link rel="stylesheet" href="replaces.css">
</head>
<body>
<h1>UniSerialReplaces 連続置換機ツール</h1>
<div id="replaceContainer">
</div>
<button id="addPair">+</button>
<button id="removePair">-</button>
<div>
<div class="file-upload-container">
<input type="file" id="fileInput" />
</div>
<textarea id="originalText" rows="5" placeholder=""></textarea>
↓
<textarea id="resultText" rows="5" readonly placeholder=""></textarea>
</div>
<div id="statics" class="statics">
<div>文字数:
<span id="countCharacterBefore"></span>→
<span id="countCharacterAfter"></span>
(<span id="countCharacterDiff"></span>)
</div>
</div>
<div class="note">
<div>※ 置換対象の入力データは、ブラウザのローカルストレージに保存されます。</div>
<div>※ 共用のパソコンを使用し見られたくない文章の場合、入力データは忘れずに消してください。</div>
</div>
<a href="index.html">何も無いindex.html</a>
<script src="replaces.js"></script>
</body>
</html>