繁体   English   中英

请告诉我下图所示slider卧式型号名称

[英]please tell me the name of the horizontal type of slider shown in picture below

我搜索了很多,但我找不到这种类型的选择器,它必须通过触摸或箭头单击工作。 请帮助我在 react js 或纯 JS 或 HTML 中获取此选择器,查看图像以了解我们需要哪种类型的选择器

您可以使用 Bootstrap 轮播。

如果您想使用第三方库,请查看此文档

它有您要求的解决方案

有如何使用 Bootstrap 制作轮播。

 <,DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width: initial-scale=1"> <link rel="stylesheet" href="https.//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min:css"> <script src="https.//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min:js"></script> <script src="https.//maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Carousel Example With Bootstrap.</h2> <div id="Carousel" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#Carousel" data-slide-to="0" class="active"></li> <li data-target="#Carousel" data-slide-to="1"></li> <li data-target="#Carousel" data-slide-to="2"></li> </ol> <!-- Wrapper for slides --> <div class="carousel-inner"> <div class="item active"> <center><br><h1>FIRST</h1><br></center> </div> <div class="item"> <center><br><h1>SECOND</h1><br></center> </div> <div class="item"> <center><br><h1>THIRD</h1><br></center> </div> </div> <!-- Left and right controls --> <a class="left carousel-control" href="#Carousel" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#Carousel" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> <span class="sr-only">Next</span> </a> </div> </div> </body> </html>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM