Когда мой ползунок карусели «переключается», возникает небольшое «искажение», что мне делать, чтобы избавиться от него, пожалуйста?
В основном желаемый эффект - сохранять плавность при переходе к следующему слайду, точно знайте, что он прыгает
Спасибо
кодовый код ниже
https://codepen.io/nightcoder21/pen/BxwVdJ
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<h4>We have a very unusal computer program which had some very unusal problems that were not in the program manual. Ravi rose to the challenge and has very good problem solving abilities. Ravi is also very good at explaining things in plain English and I recommend writing down what is explained. People are welcome to contact us for anymore information.</h4>
<h2>Bruce & Bev A. - Sunnyhills,Auckland</h2>
</div>
<div class="carousel-item">
<h4>PC Handyman is a business I use regualrily to assist me with my office needs, from building my business website to help in seting up all my IT equipment for my small office, he is patient, thorough and is a please to work with</h4>
<h2>Craig M. Data Analytics NZ</h2>
</div>
<div class="carousel-item">
<h4>As I am an elderly person, I often need help with setting up and a bit of training with my computer and phone, PC handyman are always punctual and have an ability to explain tech matters in a simple and non technical way!</h4>
<h2>Wendy E. Howick</h2>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>