网络编程
位置:首页>> 网络编程>> JavaScript>> Bootstrap轮播插件简单使用方法介绍

Bootstrap轮播插件简单使用方法介绍

作者:-夏昊-  发布时间:2024-04-27 15:19:06 

标签:bootstrap,轮播

本文细致的为大家分享了Bootstrap轮播插件简单实例,供大家参考,具体内容如下

使用Bootstrap的轮播插件可以向站点添加滑块,内容可以是图像,内嵌框架,视频或其它任何内容,使用轮播插件需要引入

效果图:

Bootstrap轮播插件简单使用方法介绍

bootstrap.min.js. 


<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">

<!—轮播导航 -->
 <ol class="carousel-indicators">

<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>

<li data-target="#carousel-example-generic" data-slide-to="1"></li>

<li data-target="#carousel-example-generic" data-slide-to="2"></li>
 </ol>
 <!—轮播项目 -->
 <div class="carousel-inner" role="listbox">
 <div class="item active">
  <img src="~/images/Chrysanthemum.jpg" />
  <div class="carousel-caption">
  ffffffff
  </div>
 </div>
  <div class="item">
  <img src="~/images/Desert.jpg" />

<div class="carousel-caption">

xxxxxxxxxxxxxxxx
  </div>
 </div>
  <div class="item">
  <img src="~/images/Lighthouse.jpg" />
  <div class="carousel-caption">
  mmmmmmmmmmmm
  </div>
 </div>
 </div>

<!—轮播导航 -->

<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">

<span class="glyphicon glyphicon-chevron-left"></span>

<span class="sr-only">Previous</span>
 </a>
 <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
 <span class="glyphicon glyphicon-chevron-right"></span>
  <span class="sr-only">Next</span>

</a>
</div>

小编再为大家推荐一篇文章:全面解析Bootstrap图片轮播效果

如果大家还想深入学习,可以点击这里进行学习,再为大家附一个精彩的专题:Bootstrap学习教程

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com