"Bootstrap carousel slideshow with thumbnails"
Bootstrap 4.1.1 Snippet by saikrishna99666

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<div class="container">
<div class="row">
<h2>Bootstrap carousel slideshow with thumbnails</h2>
<div class="carousel slide article-slide" id="vpCarousel" data-interval="2000" data-ride="carousel">
<div class="carousel-inner cont-slider">
<div class="item active">
<img src="https://rembormn.com/images/rembormn/slideshow/rem-cua-dep01.png" width="1070" height="450" alt="Chất liệu vải mềm vại, dễ vào nếp, độ cản nắng ở mức 75%">
<div class="carousel-caption">
<h2>RÈM THÔNG TẦNG SỬ DỤNG ĐỘNG CƠ</h2>
<p>Chất liệu vải mềm vại, dễ vào nếp, độ cản nắng ở mức 75%.</p>
</div>
</div>
<div class="item">
<img src="https://rembormn.com/images/rembormn/slideshow/rem-cua-dep02.png" width="1070" height="450" alt="Chất liệu vải gấm lỳ, lên múi rèm mềm mại, cản nắng 100%">
<div class="carousel-caption">
<h2>RÈM CỬA GẤM LỲ, MÀU COBAN CÁ TÍNH</h2>
<p>Chất liệu vải gấm lỳ, lên múi rèm mềm mại, cản nắng 100%.</p>
</div>
</div>
<div class="item">
<img src="https://rembormn.com/images/rembormn/slideshow/rem-cua-dep03.png" width="1070" height="450" alt="Vẫn mang chất liệu gấm lỳ, với mức cản nắng tuyệt đối, đi kèm voan mưa, mềm mại">
<div class="carousel-caption">
<h2>RÈM CỬA 2 LỚP GẤM LỲ VÀ VOAN MƯA HẠT LỚN</h2>
<p>Vẫn mang chất liệu gấm lỳ, với mức cản nắng tuyệt đối, đi kèm voan mưa, mềm mại.</p>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
#vpCarousel .carousel-caption h2 {
background-color: rgba(192,192,192,0.2);
padding: 10px 0;
color:darkred;
}
#vpCarousel .carousel-caption p {
background-color: rgba(192,192,192,0.3);
padding: 10px 0;
color:darkgreen;
}
#vpCarousel .carousel-control.left {
background-image: none;
width: 54px;
height: 54px;
top: 50%;
left: 20px;
margin-top: -27px;
line-height: 54px;
border: 2px solid #fff;
opacity: 1;
text-shadow: none;
-webkit-transition: all 0.2s ease-in-out 0s;
-o-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
#vpCarousel .carousel-control.right {
background-image: none;
width: 54px;
height: 54px;
top: 50%;
right: 20px;
margin-top: -27px;
line-height: 54px;
border: 2px solid #fff;
opacity: 1;
text-shadow: none;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: