zoukankan      html  css  js  c++  java
  • bootstrap轮播和百叶窗

    轮播

    在bootstrap里面,有设置的图片轮播的代码:

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

    <!-- Indicators -->

      <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> <!-- Wrapper for slides -->

    <div class="carousel-inner">

          <div class="item active">

         <img src="..." alt="...">

    <div class="carousel-caption"> ... </div>

    </div> ... </div>

    <!-- Controls -->

    <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </a>

    <a class="right carousel-control" href="#carousel-example-generic" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </a>

    </div>

    这样就能实现图片轮播的功能,也可以自己定义轮播的按钮的样式,但是要注意的是,定义名字的时候不能和bootstrap的css样式重复。

    百叶窗

    <div class="panel-group" id="accordion">

         <div class="panel panel-default">

            <div class="panel-heading">

             <h4 class="panel-title">

             <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseOne"> Collapsible Group Item #1 </a>

            </h4>

         </div>

        <div id="collapseOne" class="panel-collapse collapse in">

           <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.

            3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3

            wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica,

             craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer

            farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

        </div>

    </div>

    </div>

    <div class="panel panel-default">

           <div class="panel-heading">

                           <h4 class="panel-title">

                                <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"> Collapsible Group Item #2 </a>

                          </h4> </div> <div id="collapseTwo" class="panel-collapse collapse">

                        <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute,

    non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin

    coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.

    Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

            </div>

        </div>

    </div>

    <div class="panel panel-default">

                       <div class="panel-heading">

                        <h4 class="panel-title">

                                    <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseThree"> Collapsible Group Item #3 </a>

                             </h4>

                         </div>

    <div id="collapseThree" class="panel-collapse collapse">

    <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard

    dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et

    . Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft

    beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

                                  </div>

                             </div>

                  </div>

    </div>

    这样就实现百叶窗了。但是要注意,网页里的样式命名不能这里百叶窗的相同,不然,不能实现该功能了。

  • 相关阅读:
    Ext Js MVC系列二 利用Application和Viewport进行应用程序初始化和页面布局
    LINQ to Sql系列一 增,删,改
    Ext Js MVC系列一 环境搭建和MVC框架整体认识
    LINQ to Sql系列四 性能优化总结
    SQL基础回顾系列一 单表查询(select语句)
    JSON详解
    公用类库(4) 缓存操作类CacheUtil
    架构设计考虑的问题(出自代码大全II)
    .net自动更新组件Ant
    .net socket在win2008下的吞吐性能报告
  • 原文地址:https://www.cnblogs.com/liner730/p/4733103.html
Copyright © 2011-2022 走看看