bootstrap 修改carousel 样式

来源:互联网 发布:服装设计要学什么软件 编辑:程序博客网 时间:2024/05/18 02:49

  • 修改indicators和底部的间距

.ol.carousel-indicators{

    bottom: 0px;

    margin-bottom: 0px;

}

  • 修改indicators的圆点大小
ol.carousel-indicators li {
    width: 6px;
    height: 6px;
}
ol.carousel-indicators li.active {
    width: 8px;
    height: 8px;
}

  • 修改左右箭头
    .center-vertical {
        position:relative;
        top:40%;
        transform:translateY(-50%);
    }


    <!-- 轮播(Carousel)导航 -->
    <a class="left carousel-control" href="#myCarousel" data-slide="prev">
        <span class="center-vertical">&lsaquo;</span>
    </a>
    <a class="right carousel-control" href="#myCarousel" data-slide="next">
        <span class="center-vertical">&rsaquo;</span>
    </a>


2 0
原创粉丝点击