-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo_2.html
99 lines (85 loc) · 4.16 KB
/
video_2.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Video Gallery Template | PrepBootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Video Gallery <small>A responsive video gallery layout</small></h1>
</div>
<!-- Video Gallery - START -->
<div class="container-fluid pb-video-container">
<div class="col-md-10 col-md-offset-1">
<h3 class="text-center">Sample Video Gallery</h3>
<div class="row pb-row">
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/K68UrdUOr2Y?list=RDzuAcaBkcYGE?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">Claydee - Alena</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/wjT2JVlUFY4?list=RDzuAcaBkcYGE?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">Manuel Riva - Mhm Mhm</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame " width="100%" height="230" src="https://www.youtube.com/embed/papuvlVeZg8?list=RDzuAcaBkcYGE?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">Clean Bandit - Rockabye</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/Y1_VsyLAGuk?list=RDzuAcaBkcYGE?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">Burak Yeter - Tuesday</label>
</div>
</div>
<div class="row pb-row">
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/UY1bt8ilps4?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">F.O. and Peeva - Lichnata</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/QpbQ4I3Eidg?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">Machine Gun - Bad Things</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/h3kRIxLruDs?ecver=" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">INNA - Say it with your body</label>
</div>
<div class="col-md-3 pb-video">
<iframe class="pb-video-frame" width="100%" height="230" src="https://www.youtube.com/embed/Jr4TMIU9oQ4?ecver=1" frameborder="0" allowfullscreen></iframe>
<label class="form-control label-warning text-center">INNA - Gimme Gimme</label>
</div>
</div>
</div>
</div>
<style>
.pb-video-container {
padding-top: 20px;
background: #bdc3c7;
font-family: Lato;
}
.pb-video {
border: 1px solid #e6e6e6;
padding: 5px;
}
.pb-video:hover {
background: #2c3e50;
}
.pb-video-frame {
transition: width 2s, height 2s;
}
.pb-video-frame:hover {
height: 300px;
}
.pb-row {
margin-bottom: 10px;
}
</style>
<!-- Video Gallery - END -->
</div>
</body>
</html>