forked from jsor/jcarousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (42 loc) · 2.08 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Carousel Skeleton - jCarousel Examples</title>
<!-- Example assets -->
<link rel="stylesheet" type="text/css" href="jcarousel.skeleton.css">
<script type="text/javascript" src="../../libs/jquery/jquery.js"></script>
<script type="text/javascript" src="../../dist/jquery.jcarousel.min.js"></script>
<script type="text/javascript" src="jcarousel.skeleton.js"></script>
</head>
<body>
<div class="wrapper">
<h1>Carousel Skeleton</h1>
<p>This is an unstyled carousel which you can use as a foundation for implementing your own carousels.</p>
<!--
Mutual wrapper, encloses the carousel and the plugin elements to
enable auto-detection of the carousel for the plugins.
-->
<div class="jcarousel-wrapper">
<!-- Carousel -->
<div class="jcarousel">
<ul>
<li><img src="../_shared/img/img1.jpg" width="600" height="400" alt=""></li>
<li><img src="../_shared/img/img2.jpg" width="600" height="400" alt=""></li>
<li><img src="../_shared/img/img3.jpg" width="600" height="400" alt=""></li>
<li><img src="../_shared/img/img4.jpg" width="600" height="400" alt=""></li>
<li><img src="../_shared/img/img5.jpg" width="600" height="400" alt=""></li>
<li><img src="../_shared/img/img6.jpg" width="600" height="400" alt=""></li>
</ul>
</div>
<!-- Prev/next controls -->
<a href="#" class="jcarousel-control-prev">‹ Prev</a>
<a href="#" class="jcarousel-control-next">Next ›</a>
<!-- Pagination -->
<p class="jcarousel-pagination">
<!-- Pagination items will be generated in here -->
</p>
</div>
</div>
</body>
</html>