-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBanner.html
64 lines (64 loc) · 1.87 KB
/
Banner.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="renderer" content="webkit" />
<title></title>
<link href="https://www.sammh.com/css/reset.css" rel="stylesheet" />
<script src="js/jquery.js"></script>
<style>
#smh_banner {
overflow:hidden;
margin:0px auto;
position:relative;
}
#smh_banner ul {
overflow:hidden;
margin:0px auto;
position:relative;
}
#smh_banner ul li{
float:left;
}
.pagination{
margin:0px auto;
position:absolute;
top:90%;
z-index:999;
}
.pagination span{
cursor:pointer;
width:10px;
height:10px;
background:#ccc;
border-radius:50%;
display:inline-block;
margin-right:5px;
}
.pagination span:last-child{
margin-right:0px;
}
.active{
background:#4C70B1 !important;
}
</style>
</head>
<body>
<div id="smh_banner">
<ul>
<li><a href=""><img src="/upfile/984132078273626534109.jpg"></a></li>
<li><a href=""><img src="/upfile/630132078271826279435.png"></a></li>
<li><a href=""><img src="/upfile/984132078273626534109.jpg"></a></li>
<li><a href=""><img src="upfile/630132078271826279435.png"></a></li>
</ul>
<div class="pagination"></div>
</div>
<script src="js/Banner.min.js"></script>
<script type="text/javascript">
var parm = { time: 5000 };//图片切换间隔时间
inits(parm);//调用函数
</script>
</body>
</html>