forked from jsor/jcarousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (27 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ajax Carousel - jCarousel Examples</title>
<!-- Shared assets -->
<link rel="stylesheet" type="text/css" href="../_shared/css/style.css">
<!-- Example assets -->
<link rel="stylesheet" type="text/css" href="jcarousel.ajax.css">
<script type="text/javascript" src="../../vendor/jquery/jquery.js"></script>
<script type="text/javascript" src="../../dist/jquery.jcarousel.min.js"></script>
<script type="text/javascript" src="jcarousel.ajax.js"></script>
</head>
<body>
<div class="wrapper">
<h1>Ajax Carousel</h1>
<p>This example shows how to load carousel items via AJAX.</p>
<div class="jcarousel-wrapper">
<div class="jcarousel">
<div class="loading">Loading carousel items...</div>
</div>
<a href="#" class="jcarousel-control-prev">‹</a>
<a href="#" class="jcarousel-control-next">›</a>
</div>
</div>
</body>
</html>