【发布时间】:2020-05-13 17:26:53
【问题描述】:
我的旋转木马/滑块正在自动移动,我想停止它,它只能通过单击导航错误来移动,这是滑块 https://ibb.co/HPr9rJR 的图片,它正在自动移动到左侧,我希望它不会自动移动并且只能通过单击“”来移动。我从这里得到这个滑块
codepen.io/decibeldesign/details/bMrQKN
代码:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs /twitter- bootstrap/4.0.0/css/bootstrap.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1 /jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap /4.0.0/js/bootstrap.min.js"></script>
<div class="col-md-10 col-xs-8 my-5 text-center5">
<div class="row d-flex align-items-center">
<div class="col-1 d-flex align-items-center justify-content-center">
<a href="#carouselExampleIndicators" role="button" data-slide="prev">
<div class="carousel-nav-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 129" xmlns:xlink="http://www.w3.org/1999/xlink" style="height: 50px;">
<path d="m88.6,121.3c0.8,0.8 1.8,1.2 2.9,1.2s2.1-0.4 2.9-1.2c1.6-1.6 1.6-4.2 0-5.8l-51-51 51-51c1.6-1.6 1.6-4.2 0-5.8s-4.2-1.6-5.8,0l-54,53.9c-1.6,1.6-1.6,4.2 0,5.8l54,53.9z"/>
</svg>
</div>
</a>
</div>
<div class="col-6">
<!--Start carousel-->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row">
<div style="" class="col-12 col-md d-flex align-items-center justify-content-center">
<div class="col-md-2 col-xs-12 upcoming-btn">
<span href="" class="btn btn-success btn-lg dashboard-icon"
style="width: 200px; height: 150px;">
<p style="padding-top: 15px; font-size: 25px;
font-weight: bold;">subject</p>
<p style="font-size: 25px; font-weight: bold;">date</p>
<p style="font-size: 25px; font-weight: bold;">Upcoming</p>
</span>
</div>
</div>
<div style="" class="col-12 col-md d-flex align-items-center justify-content-center">
<div class="col-md-2 col-xs-12 upcoming-btn">
<span href="" class="btn btn-success btn-lg dashboard-icon"
style="width: 200px; height: 150px;">
<p style="padding-top: 15px; font-size: 25px;
font-weight: bold;">subject</p>
<p style="font-size: 25px; font-weight: bold;">date</p>
<p style="font-size: 25px; font-weight: bold;">Upcoming</p>
</span>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row">
<div style="" class="col-12 col-md d-flex align-items-center justify-content-center">
<div class="col-md-2 col-xs-12 completed-btn">
<span href="" class="btn btn-warning btn-lg dashboard-icon"
style="width: 200px; height: 150px;">
<p style="padding-top: 15px; font-size: 25px;
font-weight: bold;">subject</p>
<p style="font-size: 25px; font-weight: bold;">date</p>
<p style="font-size: 25px; font-weight: bold;">Completed</p>
</span>
</div>
</div>
<div style="" class="col-12 col-md d-flex align-items-center justify-content-center">
<div class="col-md-2 col-xs-12 completed-btn">
<span href="" class="btn btn-warning btn-lg dashboard-icon"
style="width: 200px; height: 150px;">
<p style="padding-top: 15px; font-size: 25px;
font-weight: bold;">subject</p>
<p style="font-size: 25px; font-weight: bold;">date</p>
<p style="font-size: 25px; font-weight: bold;">Completed</p>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End carousel-->
</div>
<div class="col-1 d-flex align-items-center justify-content-center"><a href="#carouselExampleIndicators" data-slide="next">
<div class="carousel-nav-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 129" xmlns:xlink="http://www.w3.org/1999/xlink" style="height: 50px;">
<path d="m40.4,121.3c-0.8,0.8-1.8,1.2-2.9,1.2s-2.1-0.4-2.9-1.2c-1.6-1.6-1.6-4.2 0-5.8l51-51-51-51c-1.6-1.6-1.6-4.2 0-5.8 1.6-1.6 4.2-1.6 5.8,0l53.9,53.9c1.6,1.6 1.6,4.2 0,5.8l-53.9,53.9z"/>
</svg>
</div>
</a>
</div>
</div>
</div>
【问题讨论】:
-
不要在您的帖子中添加垃圾文本来绕过要求您解释更多问题的要求 - 相反,请更详细地解释问题,例如作为您尝试过的哪种调试不起作用。查找如何创建 minimal reproducible example 也可能会有所帮助 - 考虑删除与问题不直接相关的代码。
-
将
interval: false放入carousel js 配置中。 getbootstrap.com/docs/4.0/components/carousel/#options -
这个问题需要用简短的信息来改进。
-
@CertainPerformance 请检查更新后的问题
-
@Kevin 请检查更新的问题
标签: html css bootstrap-4 slider carousel