-
Notifications
You must be signed in to change notification settings - Fork 123
/
index.html
59 lines (59 loc) · 2.13 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
<!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">
<meta name="description" content="基于layui的扩展插件">
<meta name="keywords" content="hsiangleev,layui扩展">
<title>layui扩展</title>
<link rel="icon" type="image/png" sizes="32x32" href="./favicon.ico">
<style>
ul{
margin: 30px auto;
list-style: decimal;
}
li{
padding: 5px 10px;
}
a{
color:#333;
text-decoration: none;
}
a:hover{
text-decoration: underline;
color: #999;
}
</style>
</head>
<body>
<div style="margin-bottom: 15px;">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- layuiextend -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-2229355551485035"
data-ad-slot="1112477015"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<ul>
<li><a href="./step" target="_blank">基于layui的步骤条面板</a></li>
<li><a href="./cascader" target="_blank">基于layui的无限级联选择器(cascader)</a></li>
<li><a href="./eleTree" target="_blank">基于layui重写tree(eleTree)</a></li>
<li><a href="./dropdown" target="_blank">下拉菜单(主要解决table中的下拉菜单不显示)</a></li>
<li><a href="./scrollBar" target="_blank">滚动条插件</a></li>
<li><a href="./eFlowChart" target="_blank">程序流程图</a></li>
</ul>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?9e39de91fc206c680fb0266ab977e776";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>