-
Notifications
You must be signed in to change notification settings - Fork 0
/
轮播图.html
36 lines (35 loc) · 973 Bytes
/
轮播图.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>轮播图</title>
<link rel="stylesheet" href="style.css">
<script src="jquery-1.11.0.js"></script>
<script src="lunbo.js"></script>
</head>
<body>
<!--轮播显示区域-->
<div class="bigbox">
<!--轮播主体-->
<div class="boxContainer">
<div class="boxItem red">1</div>
<div class="boxItem yellow">2</div>
<div class="boxItem blue">3</div>
<div class="boxItem orange">4</div>
<div class="boxItem green">5</div>
<div class="boxItem red">1</div>
</div>
<!--轮播标签-->
<ul>
<li class="active">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
<!--左右按钮-->
<div class="btn left"><</div>
<div class="btn right">></div>
</div>
</body>
</html>