-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (57 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Country Code Phone</title>
<!-- jquery -->
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<!-- jsonview -->
<link href="https://cdn.bootcss.com/jquery-jsonview/1.2.3/jquery.jsonview.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/jquery-jsonview/1.2.3/jquery.jsonview.min.js"></script>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<div class="box">
<!-- show codes -->
<div class="box-content">
</div>
<div class="box-features">
<h4>Change Yourself</h4>
<div class="box-features-item">
<p>title</p>
<input type="text" class="box-features-item-title">
</div>
<div class="box-features-item">
<p>items</p>
<input type="text" class="box-features-item-items">
</div>
<div class="box-features-item">
<p>label</p>
<input type="text" class="box-features-item-label">
</div>
<div class="box-features-item">
<p>label_en</p>
<input type="text" class="box-features-item-label-en">
</div>
<div class="box-features-item">
<p>code</p>
<input type="text" class="box-features-item-code">
</div>
<button class="box-features-btn">confirm</button>
</div>
<div class="box-json">
<button id="collapse-btn">Collapse</button>
<button id="expand-btn">Expand</button>
<button id="toggle-btn">Toggle</button>
<button id="toggle-level1-btn">Toggle level1</button>
<button id="toggle-level2-btn">Toggle level2</button>
<button id="copy-btn">copy</button>
<div class="box-json-content"></div>
</div>
<input type="text" id="copy-content" value="">
</div>
<script src="./js/index.js"></script>
</body>
</html>