-
Notifications
You must be signed in to change notification settings - Fork 0
/
slideZ.html
41 lines (38 loc) · 948 Bytes
/
slideZ.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/reset.css"/>
<link rel="stylesheet" href="css/slideZ.css"/>
</head>
<body>
<div class="slide_box">
<ul class="slide_img">
<li>
<img src="img/slideZ/1.jpg" alt=""/>
</li>
<li>
<img src="img/slideZ/2.jpg" alt=""/>
</li>
<li>
<img src="img/slideZ/3.jpg" alt=""/>
</li>
</ul>
<a href="javascript:;" class="btn_l"><</a>
<a href="javascript:;" class="btn_r">></a>
</div>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/slideZ.js"></script>
<script>
$(function () {
$(".slide_box").slideZ({
speed : 600,
autoPlay : true,
// haveBtn : false
haveCircle : true
});
});
</script>
</body>
</html>