-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarousel.html
70 lines (66 loc) · 2.02 KB
/
Carousel.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
65
66
67
68
69
70
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script src="js/jquery.js"></script>
<link rel="stylesheet" href="css/Carousel.css" charset="utf-8">
<script src="plugins/Carousel.js"></script>
<script>
$(function() {
Carousel.init($('.J_Poster'));
});
</script>
</head>
<body style="padding:50px;">
<div class="J_Poster poster-main" data-setting='{
"width": 1000,
"height": 270,
"posterWidth": 640,
"posterHeight": 270,
"scale": 0.9,
"speed": 600,
"verticalAlign": "middle"
}'>
<div class="poster-btn poster-prev-btn"></div>
<ul class="poster-list">
<li class="poster-item">
<a href="#">
<img src="images/1.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/2.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/3.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/4.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/5.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/6.JPG" width="100%" />
</a>
</li>
<li class="poster-item">
<a href="#">
<img src="images/7.JPG" width="100%" />
</a>
</li>
</ul>
<div class="poster-btn poster-next-btn"></div>
</div>
</body>
</html>