-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixError.html
More file actions
77 lines (69 loc) · 1.27 KB
/
Copy pathfixError.html
File metadata and controls
77 lines (69 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>错误提取</title>
<link rel="stylesheet" href="src/styles/common.css"/>
<style>
body {
min-width: 300px;
max-width: 640px;
}
* {
box-sizing: border-box;
}
ul, li,body{
padding: 0;
margin: 0;
}
li {
list-style: none;
}
.clearfix:after{
content:'';display:block;clear:both;
}
.banner-box {
width: 100%;
}
.img-box {
width: 200%;
overflow:hidden;
}
.img-box li {
float: left;
width: 50%;
}
.img-box li a{display:block;}
.img-box img {
width: 100%;
}
.dot {
width: 110px;
margin: -30px auto 0;
padding: 0 15px;
height:10px;
}
.dot li {
float:left;
width: 10px;
height: 10px;
border: 1px solid #ddd;
border-radius: 50%;
margin: 0 15px;
background-color: #ccc;
}
</style>
</head>
<body>
<div class="banner-box">
<ul class="img-box clearfix">
<li><a href=""><img src="src/imgs/banner_1.jpg" alt=""/></a></li>
<li><a href=""><img src="src/imgs/banner_1.jpg" alt=""/></a></li>
</ul>
<ul class="dot clearfix">
<li></li>
<li></li>
</ul>
</div>
</body>
</html>