Bootstrap实现基于carousel.js框架的轮播图效果


Posted in Javascript onMay 02, 2017

本文实例为大家分享了Bootstrap轮播图效果展示的具体代码,供大家参考,具体内容如下

声明式触发需要使用到的几个data-*属性

1.data-ride:作用在最外层容器上,固定值:carousel
2.data-target:作用在class=carousel-indicators的每个子元素li上面,标注对那个元素进行点击轮播
3.data-slide:作用在前翻页和后翻页的两个a链接上,prev表示前翻页,next表示后翻页
4.data-slide-to:作用在class=carousel-indicators的每个子元素li上面,标注对应的li元素对应的图片动画帧的下标,从0开始
5.data-interval:轮番图自动轮播的等待时间,如果为false则不自动轮播,默认为5000ms
6.data-pause:指定鼠标停留在轮换图上是否停止轮播,离开后继续自动轮播
7.data-wrap:指定是否持续轮播

轮播图代码实现:

<!Doctype html>
<html>
 <head>
  <title>登录界面-bootstrap打造前端--美观高大上-成兮制作</title>

  <!-- meta -->
  <meta http-equiv="viewport" content="width=device-width, initial-scale=1">
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

  <!-- ICON Link -->
  <link rel="shorticon" type="image/x-icon" href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" />
  <link rel="icon" type='image/x-icon' href="Images/webicon.ico" rel="external nofollow" rel="external nofollow" />

  <!--Bootstrap CSS Link-->
  <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" rel="external nofollow" />
  <link rel="stylesheet" href="bootstrap/css/bootstrap-theme.css" rel="external nofollow" />

  <!-- Bootstrap JS and JQuery JS Link -->
  <script src="JS/jquery.min.js"></script>
  <script src="bootstrap/js/bootstrap.min.js"></script>

 </head>
 <body>
  <!-- 制作巨幕轮播图 -->
  <div class="carousel" id="carouselcontainer" data-ride="carousel" style="background-color: rgba(128, 128, 128, 0.42);margin-top: 10%;width: 100%;height:658px;">
   <ol class="carousel-indicators">
    <li class="active" data-target="#carouselcontainer" data-slide-to="0"></li>
    <li data-target="#carouselcontainer" data-slide-to='1'></li>
    <li data-target="#carouselcontainer" data-slide-to="2"></li>
    <li data-target="#carouselcontainer" data-slide-to="3"></li>
   </ol>
   <div class="carousel-inner">
    <div class="item active">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/1.png" title="巨幕轮播图1" style="width: 100%;height: 658px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/1.jpg" title="巨幕轮播图2" style="width: 100%;height: 658px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/2.jpg" title="巨幕轮播图3" style="width: 100%;height: 600px;" />
     </a>
    </div>
    <div class="item">
     <a href="javascript:void(0);" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >
      <img src="Images/3.jpg" title="巨幕轮播图4" style="width: 100%;height: 600px;" />
     </a>
    </div>
   </div>
   <div class="left carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="prev">
    <span class="glyphicon glyphicon-chevron-left"></span>
   </div>
   <div class="right carousel-control" href="#carouselcontainer" rel="external nofollow" rel="external nofollow" data-slide="next">
    <span class="glyphicon glyphicon-chevron-right"></span>
   </div>
  </div>
 </body>
</html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
关于Jqzoom的使用心得 jquery放大镜效果插件
Apr 12 Javascript
初窥JQuery-Jquery简介 入门了解篇
Nov 25 Javascript
JavaScript字符串对象replace方法实例(用于字符串替换或正则替换)
Oct 16 Javascript
js代码实现点击按钮出现60秒倒计时
Jan 28 Javascript
你知道setTimeout是如何运行的吗?
Aug 16 Javascript
微信小程序tabBar底部导航中文注解api详解
Aug 16 Javascript
Vue header组件开发详解
Jan 26 Javascript
JavaScript中使用import 和require打包后实现原理分析
Mar 07 Javascript
javascript实现的字符串转换成数组操作示例
Jun 13 Javascript
JS工厂模式开发实践案例分析
Oct 17 Javascript
javascript执行上下文、变量对象实例分析
Apr 25 Javascript
vue动态设置路由权限的主要思路
Jan 13 Vue.js
Vue2.x中的父子组件相互通信的实现方法
May 02 #Javascript
详解webpack 配合babel 将es6转成es5 超简单实例
May 02 #Javascript
jQuery树插件zTree使用方法详解
May 02 #jQuery
JavaScript数据结构学习之数组、栈与队列
May 02 #Javascript
js-FCC算法-No repeats please字符串的全排列(详解)
May 02 #Javascript
详解webpack+es6+angular1.x项目构建
May 02 #Javascript
jQuery Tree Multiselect使用详解
May 02 #jQuery
You might like
php查询mysql数据库并将结果保存到数组的方法
2015/03/18 PHP
PHP符合PSR编程规范的实例分享
2016/12/21 PHP
PHP使用第三方即时获取物流动态实例详解
2017/04/27 PHP
PHP数组遍历的几种常见方式总结
2019/02/15 PHP
PHP lcfirst()函数定义与用法
2019/03/08 PHP
php tpl模板引擎定义与使用示例
2019/08/09 PHP
javascript GUID生成器实现代码
2009/10/31 Javascript
JavaScript 10件让人费解的事情
2010/02/15 Javascript
关于IE浏览器以及Firefox下的javascript冒泡事件的响应层级
2010/10/14 Javascript
提高NodeJS中SSL服务的性能
2014/07/15 NodeJs
简单谈谈jQuery(function(){})与(function(){})(jQuery)
2014/12/19 Javascript
js实现精美的银灰色竖排折叠菜单
2015/05/16 Javascript
JQuery中clone方法复制节点
2015/05/18 Javascript
JS组件Bootstrap Table表格多行拖拽效果实现代码
2015/12/08 Javascript
Javascript日期格式化format函数的使用方法
2016/08/30 Javascript
用AngularJS的指令实现tabs切换效果
2016/08/31 Javascript
微信小程序上传图片到服务器实例代码
2017/11/07 Javascript
echarts鼠标覆盖高亮显示节点及关系名称详解
2018/03/17 Javascript
vue超时计算的组件实例代码
2018/07/09 Javascript
jQuery实现获取及设置CSS样式操作详解
2018/09/05 jQuery
vue draggable resizable gorkys与v-chart使用与总结
2019/09/05 Javascript
layer更改皮肤的实现方法
2019/09/11 Javascript
Windows上配置Emacs来开发Python及用Python扩展Emacs
2015/11/20 Python
Python实现嵌套列表及字典并按某一元素去重复功能示例
2017/11/30 Python
Python中关键字global和nonlocal的区别详解
2018/09/03 Python
python离线安装外部依赖包的实现
2020/02/13 Python
css3给背景图片加颜色遮罩的方法
2019/11/05 HTML / CSS
CSS3属性 line-clamp控制文本行数的使用
2020/03/19 HTML / CSS
H5 canvas中width、height和style的宽高区别详解
2018/11/02 HTML / CSS
Linux如何压缩可执行文件
2014/03/27 面试题
平面设计岗位职责
2013/12/14 职场文书
产品生产计划书
2014/05/07 职场文书
乡镇群众路线教育实践活动整改措施
2014/10/04 职场文书
如何利用 CSS Overview 面板重构优化你的网站
2021/10/24 HTML / CSS
bat批处理之字符串操作的实现
2022/03/16 Python
Python自动操作神器PyAutoGUI的使用教程
2022/06/16 Python