-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathexample.html
81 lines (73 loc) · 1.51 KB
/
example.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
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Owl Carousel v2 Accessibility Layer Demo</title>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<link rel="stylesheet" href="http://owlcarousel.owlgraphic.com/assets/owlcarousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="http://owlcarousel.owlgraphic.com/assets/owlcarousel/assets/owl.theme.default.min.css">
<script src="http://owlcarousel.owlgraphic.com/assets/owlcarousel/owl.carousel.js"></script>
<script type="text/javascript" src="owlcarousel2-a11ylayer.js"></script>
<style>
*[aria-hidden="true"] {
background: #f00;
}
</style>
</head>
<body>
<div class="oc-container">
<div class="item-0">
<h2>Hi</h2>
</div>
<div class="item-1">
<h2>this</h2>
</div>
<div class="item-2">
<h2>is</h2>
</div>
<div class="item-3">
<h2>a</h2>
</div>
<div class="item-4">
<h2>carousel</h2>
</div>
<div class="item-5">
<h2><a href="#test1">showing</a></h2>
</div>
<div class="item-6">
<h2>a</h2>
</div>
<div class="item-7">
<h2>set</h2>
</div>
<div class="item-8">
<h2>of</h2>
</div>
<div class="item-9">
<h2><a href="#test2">slides</a></h2>
</div>
</div>
<div id="debug">
</div>
<script>
$(document).ready(function(){
$('.oc-container').owlCarousel({
loop: true,
margin: 10,
nav: true,
responsive: {
0: {
items:1
},
600: {
items:3
},
1000: {
items:5
}
}
});
});
</script>
</body>
</html>