"Custom bootstrap carousel!"
Bootstrap 4.1.1 Snippet by Bakybilla

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="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!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">
<title>Document</title>
</head>
<body>
<section class="testimonial">
<div class="container">
<div class="row">
<div class="col-lg-6 d-none d-lg-block">
<ol class="carousel-indicators tabs">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active">
<figure>
<img src="https://livedemo00.template-help.com/wt_62267_v8/prod-20823-one-service/images/testimonials-01-179x179.png" class="img-fluid" alt="">
</figure>
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="1">
<figure>
<img src="https://livedemo00.template-help.com/wt_62267_v8/prod-20823-one-service/images/testimonials-02-306x306.png" class="img-fluid" alt="">
</figure>
</li>
<li data-target="#carouselExampleIndicators" data-slide-to="2">
<figure>
<img src="https://livedemo00.template-help.com/wt_62267_v8/prod-20823-one-service/images/testimonials-03-179x179.png" class="img-fluid" alt="">
</figure>
</li>
</ol>
</div>
<div class="col-lg-6 d-flex justify-content-center align-items-center">
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
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 16px;
font-weight: 300;
line-height: 23px;
font-family: "Poppins", sans-serif;
}
ul {
list-style-type: none;
}
a,
a:hover {
text-decoration: none;
}
body {
font-family: "Montserrat", sans-serif;
}
body .testimonial {
padding: 100px 0;
}
body .testimonial .row .tabs {
all: unset;
margin-right: 50px;
display: flex;
flex-direction: column;
}
body .testimonial .row .tabs li {
all: unset;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$(document).ready(function(){
$(".testimonial .indicators li").click(function(){
var i = $(this).index();
var targetElement = $(".testimonial .tabs li");
targetElement.eq(i).addClass('active');
targetElement.not(targetElement[i]).removeClass('active');
});
$(".testimonial .tabs li").click(function(){
var targetElement = $(".testimonial .tabs li");
targetElement.addClass('active');
targetElement.not($(this)).removeClass('active');
});
});
$(document).ready(function(){
$(".slider .swiper-pagination span").each(function(i){
$(this).text(i+1).prepend("0");
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: