使用bootstrap快速製做一個輪播圖

輪播圖的製做並不難,可是在實際開發中手寫的輪播圖作適配比較麻煩,在項目開發中前端大多都會使用bootstrap,那麼使用bootstrap作出輪播圖既快捷,適配性又高。


  • 首先bootstrap的引用,由於它依賴jquery,因此在HTML中應該先引入jquery(注意引入順序)
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    
</body>
<script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</html>
複製代碼
  • 上述在線路徑引入後,即可以直接在HTML中放入以下代碼
<div class="carousel slide" id="carousel-example-generic" data-ride="carousel" data-interval="1500">
    <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> </ol>
    <div class="carousel-inner " id="hxp_lunbo">
        <div class="item active "> <img src="src/common/image/photo/1 (1).jpg"> </div> <div class="item"> <img src="src/common/image/photo/1 (2).jpg"> </div> </div> <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </a> <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </a> </div>
                        <!-- 上述中只須要更改圖片的路徑就能夠輕鬆使用了 -->

複製代碼
相關文章
相關標籤/搜索