-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (83 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<meta name="author" content="[email protected]">
<meta name="description" content="lazyload-数据延迟加载组件 a lightweight module to lazy load any data">
<meta name="format-detection" content="telephone=no">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>Lazyload demo</title>
<link rel="stylesheet" href="demo/common.css" />
</head>
<body>
<style media="screen">
body {
width: 100%;
color: #333;
overflow: hidden;
}
.demo-title {
width: 100%;
height: 40px;
padding-left: 18px;
font-size: 20px;
line-height: 40px;
font-weight: 500;
}
.demo-desc {
padding: 10px;
font-size: 12px;
line-height: 1.4;
}
.demo-list {
width: 100%;
}
.demo-list > li {
float: left;
width: 33.33333%;
height: 115px;
padding: 10px;
font-size: 14px;
line-height: 1.8;
text-align: center;
background-color: #f9f9f9;
border: 1px solid #fff;
box-sizing: border-box;
}
.demo-list a {
display: block;
width: 100%;
height: 100%;
color: #555;
}
</style>
<h2 class="demo-title">Lazyload</h2>
<p class="demo-desc">A lightweight module to LazyLoad elements which are out of current viewPort for mobile web. 数据延迟加载组件</p>
<ul class="demo-list clearfix">
<li>
<a href="demo/autoDestroy.html">autoDestroy demo</a>
</li>
<li>
<a href="demo/addElements.html">addElements demo</a>
</li>
<li>
<a href="demo/removeElements.html">removeElements demo</a>
</li>
<li>
<a href="demo/addCallback.html">addCallback demo</a>
</li>
<li>
<a href="demo/removeCallback.html">removeCallback demo</a>
</li>
<li>
<a href="demo/instance.html">instance demo</a>
</li>
<li>
<a href="demo/addStartListener.html">addStartListener demo</a>
</li>
</ul>
</body>
</html>