-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·53 lines (53 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图片懒加载</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<style>
.show{
border:1px solid red;
text-align: center;
}
.show img{
display:inline-block;
max-width: 100%;
height:200px;
width:auto;
}
</style>
</head>
<body>
<div class="show">
<img lazy-src="http://meitu91.b0.upaiyun.com/201310/1822/27443c45824ab2a2d2dc9aa37121f5a8.jpg">
<br>
<img lazy-src="http://meitu91.b0.upaiyun.com/201312/1713/fcfcdd0a24065d9fb03a1ad6066ae285.jpg">
<br>
<img lazy-src="http://meitu91.b0.upaiyun.com/20120112/rosi009/41-94aac8.jpg">
<br>
<img lazy-src="http://pic.zhifuok.com/qq32593992/jiepaitupian/a/16/15.jpg">
<br>
<img lazy-src="http://pic.zhifuok.com/qq32593992/jinghuaban/meiri/2379.JPG">
<br>
<img lazy-src="http://meitu91.b0.upaiyun.com/201310/1822/27443c45824ab2a2d2dc9aa37121f5a8.jpg">
<br>
<img lazy-src="http://meitu91.b0.upaiyun.com/201312/1713/fcfcdd0a24065d9fb03a1ad6066ae285.jpg">
<br>
<img lazy-src="http://meitu91.b0.upaiyun.com/20120112/rosi009/41-94aac8.jpg">
</div>
<script src="lazyLoad.js"></script>
<script>
var lazyload = LazyLoad({
delay:300,
pics:2
});
</script>
</body>
</html>