-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHTML.html
104 lines (89 loc) · 2.07 KB
/
HTML.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/color.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<script type="text/javascript"
src="jquery.min.js">
</script>
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel">
<header>
<div class="m-toolbar">
<span class="m-title">
List and Footer Badges
</span>
</div>
</header>
<ul class="m-list">
<li>Mobile App
<div class="m-right">
<span class="m-badge"
style="margin-top:10px">
99+
</span>
</div>
</li>
<li>Web Design
<div class="m-right">
<span class="m-badge c1"
style="margin-top:10px">10
</span>
</div>
</li>
<li>IoT
<div class="m-right">
<span class="m-badge c2"
style="margin-top:10px">6
</span>
</div>
</li>
</ul>
<footer>
<div class="m-buttongroup
m-buttongroup-justified"
style="width:100%">
<a href="#" class="easyui-linkbutton"
data-options="iconCls:'icon-large-picture',
size:'large', iconAlign:'top',plain:true">
Photos
</a>
<a href="#" class="easyui-linkbutton"
data-options="iconCls:'icon-large-clipart',
size:'large', iconAlign:'top',plain:true">
Artwork
</a>
<a href="#" class="easyui-linkbutton"
data-options="iconCls:'icon-large-shapes',
size:'large', iconAlign:'top',plain:true">
Shapes
<span class="m-badge">
9+
</span>
</a>
<a href="#" class="easyui-linkbutton"
data-options="iconCls:'icon-large-smartart',
size:'large', iconAlign:'top',plain:true">
SmartArt
</a>
</div>
</footer>
</div>
</body>
</html>