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

Wendy ·
更新时间:2024-09-20
· 713 次阅读

本文实例为大家分享了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>



轮播图 bootstrap carousel 轮播 js

需要 登录 后方可回复, 如果你还没有账号请 注册新账号