-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (75 loc) · 3.2 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
<!DOCTYPE html>
<html>
<head>
<title>Dragon</title>
<meta charset="UTF-8">
<link href="css/index.css" rel="stylesheet" />
<link href="css/BeAlert.css" rel="stylesheet" />
<link href="css/easydropdown.css" rel="stylesheet" />
<link href="css/button.min.css" rel="stylesheet" />
</head>
<body>
<div class="outDiv" id="outDiv">
<span class="trans"></span>
<div class="row" >
<select class="dropdown" id="from">
<option value="auto" class="label" >自动检测</option>
<option value="auto" selected>自动检测</option>
<option value="zh-CHS" >中文</option>
<option value="en">英文</option>
<option value="ja">日文</option>
<option value="ko">韩文</option>
<option value="fr">法文</option>
<option value="pt">葡萄牙文</option>
<option value="ru">俄文</option>
<option value="es">西班牙文</option>
</select>
<div class="row1" >
<span class="word-limit-con"><span id="wordCurrent">0</span> / 5000</span>
<textarea id="content" class="text" dir="ltr" tabindex="1" wrap="SOFT" placeholder="请输入要翻译的文字"></textarea>
</div>
</div>
<div class="row0" >
<select class="dropdown" id="to">
<option value="auto" class="label" >自动检测</option>
<option value="auto" selected>自动检测</option>
<option value="en" >英文</option>
<option value="zh-CHS" >中文</option>
<option value="ja">日文</option>
<option value="ko">韩文</option>
<option value="fr">法文</option>
<option value="pt">葡萄牙文</option>
<option value="ru">俄文</option>
<option value="es">西班牙文</option>
</select>
<div class="row2" >
<textarea id="content2" class="text2 " dir="ltr" tabindex="1" wrap="SOFT" placeholder=""></textarea>
<span id="query"></span>
<span id="query2"></span>
</div>
</div>
<div class="svg-wrapper shape0" style="width:416px !important;height: 40px " >
<svg height="40" width="416">
<rect id="shape" height="40" width="416" />
<div id="text">
<a class="spot1" ><span class="spot"></span>翻译</a>
</div>
</svg>
</div>
<div class="svg-wrapper we" style="width:416px !important;height: 40px ">
<svg height="40" width="416" >
<rect id="shape" height="40" width="416" />
<div id="text">
<a class="spot1" ><span class="spot"></span>收藏</a>
</div>
</svg>
</div>
</div>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="js/jquery-2.1.0.js" type="text/javascript" charset="utf-8"></script>
<script>if (window.module) module = window.module;</script>
<script src="js/BeAlert.js" type="text/javascript" charset="utf-8"></script>
<script src="js/index.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.easydropdown.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>