-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 2.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="Description" content="Enter your description here" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/owl.css" />
<link rel="stylesheet" href="assets/css/font-awesome/css/all.css" />
<title>Youtube custom player with horizontal playlist</title>
</head>
<body>
<!-- Wrapper -->
<div class="container">
<div class="row" style="height: 100vh">
<div class="col-lg-12 my-auto">
<!-- player wrapper -->
<div class="col-lg-10 mx-auto py-4">
<div class="embed__container">
<div id="player"></div>
</div>
<div class="carousel__wrap mt-3">
<div class="owl-carousel">
<div data-video="92UXfEIc4lI" class="item video-thumb active">
<img
src="https://img.youtube.com/vi/92UXfEIc4lI/hqdefault.jpg"
/>
</div>
<div data-video="uWzF6p3gmJM" class="item video-thumb">
<img
src="https://img.youtube.com/vi/uWzF6p3gmJM/hqdefault.jpg"
/>
</div>
<div data-video="nc1VCP2bUuo" class="item video-thumb">
<img
src="https://img.youtube.com/vi/nc1VCP2bUuo/hqdefault.jpg"
/>
</div>
<div data-video="5GP5tBMQyt4" class="item video-thumb">
<img
src="https://img.youtube.com/vi/5GP5tBMQyt4/hqdefault.jpg"
/>
</div>
<div data-video="QStzULsPPwY" class="item video-thumb">
<img
src="https://img.youtube.com/vi/QStzULsPPwY/hqdefault.jpg"
/>
</div>
<div data-video="dJA7Qv5HHKA" class="item video-thumb">
<img
src="https://img.youtube.com/vi/dJA7Qv5HHKA/hqdefault.jpg"
/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- main scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.1.3/owl.carousel.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>