-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
86 lines (78 loc) · 3.54 KB
/
test.html
File metadata and controls
86 lines (78 loc) · 3.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>HSK Dictionary | Chinese Zero to Hero</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css?v=4.3.1" rel="stylesheet">
<link href="vendor/css-spinners/spinner/heartbeat.css" rel="stylesheet">
<link href="vendor/annotator-js/css/annotator.css?v=1.0.0" rel="stylesheet">
<link href="vendor/annotator-js/css/tipped.css" rel="stylesheet">
<link href="css/hsk-dictionary.css?v=3.7.7" rel="stylesheet">
</head>
<body>
<div class="add-pinyin">我现在给你,一段非常长的话,而且有English</div>
<div class="tpd-content-wrapper">
<div class="tpd-content-spacer" style="border-radius: 7px; width: 272px; margin-top: 1px; margin-left: 1px;">
<div class="tpd-title-wrapper" style="display: none; height: 20px; width: 272px;">
<div class="tpd-title-spacer">
<div class="tpd-title-relative">
<div class="tpd-title-relative-padder">
<div class="tpd-title"></div>
</div>
</div>
</div>
<div class="tpd-close" style="display: none;">
<div class="tpd-close-icon">×</div>
</div>
</div>
<div class="tpd-content-relative">
<div class="tpd-content-relative-padder" style="padding-right: 32px;">
<div class="tpd-content" style="visibility: visible;">
<div class="tooltip-entry">
<button onclick="AnnotatorTooltip.speak('是'); return false" class="btn speak"><i
class="glyphicon glyphicon-volume-up"></i></button>
<span class="tooltip-entry-character">是 (昰)</span>
<span class="tooltip-entry-pinyin">shì</span>
<li class="tooltip-entry-definition">variant of 是 (shì)</li>
<li class="tooltip-entry-definition">(used in given names)</li>
</div>
<div class="tooltip-entry">
<button onclick="AnnotatorTooltip.speak('是'); return false" class="btn speak"><i
class="glyphicon glyphicon-volume-up"></i></button>
<span class="tooltip-entry-character">是 (是)</span>
<span class="tooltip-entry-pinyin">shì</span>
<li class="tooltip-entry-definition">is</li>
<li class="tooltip-entry-definition">are</li>
<li class="tooltip-entry-definition">am</li>
<li class="tooltip-entry-definition">yes</li>
<li class="tooltip-entry-definition">to be</li>
</div>
</div>
</div>
<div class="tpd-close">
<div class="tpd-close-icon">×</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js?v=3.4.2"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js?v=4.3.1"></script>
<script src="vendor/vue/vue.js?v=2.6.10"></script>
<script src="vendor/pinyinify/pinyinify.js"></script>
<script src="vendor/annotator-js/js/tipped.js"></script>
<script src="vendor/annotator-js/js/annotator.js"></script>
<script src="vendor/annotator-js/js/annotator-tooltip.js"></script>
<script src="js/lib/helper.js"></script>
<script src="js/lib/cedict.js"></script>
<script src="js/lib/sketch-engine.js"></script>
<script>
SketchEngine.mistakes('来不及', function (mistakes) {
})
</script>
</body>
</html>