forked from HaoZhang95/Python24
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic01.html
More file actions
40 lines (31 loc) · 1 KB
/
Copy pathbasic01.html
File metadata and controls
40 lines (31 loc) · 1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/slide.css">
<script src="../../12jQuery_Basic/day01/js/jquery-1.12.4.min.js"></script>
<script src="./js/slide.js"></script>
</head>
<body>
<div class="slide">
<ul>
<li><a href="#"><div class="slide_pic1"></div></a></li>
<li><a href="#"><div class="slide_pic2"></div></a></li>
<li><a href="#"><div class="slide_pic3"></div></a></li>
</ul>
<!-- 轮播图的小圆点 -->
<ol>
<!-- <li class="active"></li>
<li></li>
<li></li> -->
</ol>
<!-- 左右箭头 -->
<span class="left"></span>
<span class="right"></span>
</div>
</body>
</html>