-
Notifications
You must be signed in to change notification settings - Fork 0
/
mknavigator.html
123 lines (115 loc) · 4.16 KB
/
mknavigator.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<title>MK Navigator</title>
<link rel="stylesheet" href="https://absol.cf/hightlight/styles/default.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://absol.cf/hightlight/highlight.pack.js"></script>
<script src="../dist/absol-acomp.js?<?php echo stat('../dist/absol-acomp.js')['mtime'];?>"></script>
</head>
<body>
<div id="demo"></div>
<script>
var demo1 = absol.$('#demo');
function render(o) {
return absol._(o).addTo(demo1);
}
</script>
<script class="viewable">
render('<h2>Thu gọn</h2>');
render({
tag: 'mknavigator',
style: {
display:'inline-block'// or 'block'
},
props: {
items: [
{ text: 'Thông tin chung', value: 0 },
{ text: 'Chào mừng', value: 1 },
{ text: 'Giới thiệu công ty', value: 2 },
{ text: 'Chính sách và quy định', value: 3},
{ text: 'Công việc', value: 4, },
{ text: 'Hướng dẫn sử dụng', value: 5 },
{ text: 'Hỗ trợ', value: 6 },
{ text: 'Kết thúc', value: 7 }
],
value: 3,
hiddenValues: [6]
},
on: {
orderchange: function (event) {
console.log(this.order);
},
checkedchange: function (event) {
console.log(event.itemData, event.checked);
},
press: function (event) {
console.log(event.itemData, this.value);
}
}
});
render('<h2>Đầy đủ</h2>');
render('<h3>block</h3>');
render({
tag: 'mknavigator',
style: {},
props: {
items: [
{ text: 'Thông tin chung', value: 0 },
{ text: 'Chào mừng', value: 1, draggable: true, checked: false },
{ text: 'Giới thiệu công ty', draggable: true, value: 2, checked: true },
{ text: 'Chính sách và quy định', draggable: true, value: 3, checked: true },
{ text: 'Công việc', value: 4, draggable: true, checked: false },
{ text: 'Hướng dẫn sử dụng', value: 5, draggable: true, checked: false },
{ text: 'Hỗ trợ', value: 6, draggable: true, checked: false },
{ text: 'Kết thúc', value: 7 }
],
value: 3
},
on: {
orderchange: function (event) {
console.log(this.order);
},
checkedchange: function (event) {
console.log(event.itemData, event.checked);
},
press: function (event) {
console.log(event.itemData, this.value);
}
}
});
render('<h3>inline block</h3>');
render({
tag: 'mknavigator',
style: {
display: 'inline-block'
},
props: {
items: [
{ text: 'Thông tin chung', value: 0 },
{ text: 'Chào mừng', value: 1, draggable: true, checked: false },
{ text: 'Giới thiệu công ty', draggable: true, value: 2, checked: true },
{ text: 'Chính sách và quy định', draggable: true, value: 3, checked: true },
{ text: 'Công việc', value: 4, draggable: true, checked: false },
{ text: 'Hướng dẫn sử dụng', value: 5, draggable: true, checked: false },
{ text: 'Hỗ trợ', value: 6, draggable: true, checked: false },
{ text: 'Kết thúc', value: 7 }
],
value: 3
},
on: {
orderchange: function (event) {
console.log(this.order);
},
checkedchange: function (event) {
console.log(event.itemData, event.checked);
},
press: function (event) {
console.log(event.itemData, this.value);
}
}
});
</script>
<script src="https://absol.cf/absol/demo/autohightlighting.js"></script>
</body>
</html>