forked from agragregra/Brazzers-Carousel-Repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarousel.html
54 lines (42 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="item.carousel.css">
<title>Item Carousel</title>
<style>
.wrapp {
display: flex;
flex-direction: row;
}
</style>
</head>
<body>
<h1>Item Carousel</h1>
<div class="container">
<div class="row">
<div class="col">
<div class="wrapp">
<div class="item">
<img src="t01.jpg" alt="Alt">
<img src="t02.jpg" alt="Alt">
<img src="t03.jpg" alt="Alt">
<img src="t04.jpg" alt="Alt">
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="jquery.item.carousel.js"></script>
<script>
$(document).ready(function() {
$(".item").itemCarousel({
navBlock: true
});
});
</script>
</body>
</html>