-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathto-unicode.html
84 lines (81 loc) · 3.52 KB
/
to-unicode.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>字符串转Unicode - WordsAway</title>
<link rel="icon" href="img/WordsAway_Black.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no" />
<link rel="stylesheet" href="css/materialize-n.min.css">
<link rel="stylesheet" href="css/simple.css">
</head>
<body>
<div class="container">
<h1 style="font-weight: bold; font-size: 2em">字符串转Unicode</h1>
<div class="row">
<form class="col s12" onsubmit="return false;">
<div class="row">
<div class="input-field col s12 text-in">
<textarea id="textin" class="materialize-textarea"></textarea>
<label for="textin">输入文本</label>
</div>
<div class="input-field col s12 inline filter" style="display: none;">
<input id="filter" type="text" value="\w\n\s">
<label for="filter">过滤字符</label>
</div>
<!-- Selector Backup -->
<!--
<div class="input-field col s12 font-select-field" style="display: none;">
<select class="font-selector">
<option value="monospace" selected>𝚖𝚘𝚗𝚘𝚜𝚙𝚊𝚌𝚎</option>
<option value="script">𝓈𝒸𝓇𝒾𝓅𝓉</option>
</select>
<label>selector</label>
</div>
-->
<div class="input-field col s12 checkboxs">
<div class="switch">
<label>
<input type="checkbox" class="filled-in" id="mode2" />
<span>整合代理对</span>
</label><br>
<label>
<input type="checkbox" class="filled-in" id="if-filter" />
<span>过滤</span>
</label><br>
</div>
</div>
<a class="waves-effect waves-light btn-small start-mixin" onclick="return false;" style="float: right">转换</a>
</div>
</form>
</div>
<div style="height: 50px"></div>
<p style="font-weight: bold">Result:</p>
<pre class="result">请先转换<i class="c-shounuehuaji"></i>
</pre>
<button data-clipboard-text="请先转换" class="waves-effect waves-light btn-small to-copy">复制</button>
<div style="height: 50px"></div>
<p>
<a href="https://github.com/NitroRCr/Words-away">Github</a><br>
<a href="index.html">Home</a>
</p>
<div style="height: 50px;"></div>
</div>
<div style="height: 100px;"></div>
<!-- busuanzi backup-->
<!--
<div>
<span id="busuanzi_container_site_pv">
总访问量<span id="busuanzi_value_site_pv"></span>次
</span>
</div>
-->
<script src="js/jquery-2.0.2.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/to-unicode.js"></script>
<script src="js/materialize.min.js"></script>
<!-- busuanzi backup-->
<!--
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js">
</script>
-->
</body>