-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombobox.html
More file actions
58 lines (55 loc) · 2.11 KB
/
combobox.html
File metadata and controls
58 lines (55 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Combobox Auto Complete</title>
<link rel="stylesheet" href="/WEB_02_2/content/font/fontawesome-5.15.1/css/all.css">
<link rel="stylesheet" href="/WEB_02_2/css/main.css">
</head>
<body>
<div style="width: 300px;margin: 30px auto auto 50%; transform: translate(-50%, 0);">
<select class="m-combobox" name="" id="">
<option value="10">10 nhân viên/ trang</option>
<option value="10">20 nhân viên/ trang</option>
<option value="10">30 nhân viên/ trang</option>
<option value="10">40 nhân viên/ trang</option>
</select>
<br>
<br>
<br>
<br>
<div class="mcombobox">
<input class="m-combobox" type="text" class="m-combobox-input">
<button tabindex="-1" class="m-combobox-button"><i class="fas fa-chevron-down"></i></button>
<div class="m-combobox-data">
<div class="m-combobox-item" value="1">Nam</div>
<div class="m-combobox-item" value="0">Nữ</div>
<div class="m-combobox-item" value="1">Gay</div>
<div class="m-combobox-item" value="0">Khác</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div style="width: 300px;margin: 30px auto auto 50%; transform: translate(-50%, 0);">
<div class="mcombobox">
<input class="m-combobox" type="text" class="m-combobox-input">
<button class="m-combobox-button"><i class="fas fa-chevron-down"></i></button>
<div class="m-combobox-data">
<div class="m-combobox-item" value="1">Phòng Đào tạo</div>
<div class="m-combobox-item" value="0">Phòng nhân sự</div>
</div>
</div>
</div>
<script src="/js/jquery-3.6.0.min.js"></script>
<script src="/lib/combobox/combobox.js"></script>
</body>
</html>