最新亚洲精品福利在线,欧美一区二区三区大片,久久91无码一区二区三区,色哟哟免费观看视频入口,美女裸露双奶头屁股无裸体

修改swiper分頁(yè)樣式

時(shí)間:2019-12-23 11:04:07 類型:HTML/CSS
字號(hào):    

swiper是一個(gè)很好用的幻燈插件,不過有時(shí)也我們也會(huì)修改分頁(yè)的樣式,那該如何修改呢?

其實(shí)只要在加載swiper.min.css樣式的下邊增加覆蓋默認(rèn)的分頁(yè)樣式就可以了

<style type="text/css">
	.swiper-container .swiper-pagination .swiper-pagination-bullet {
	    width: 20px;
	    height: 20px;
	    display: inline-block;
	    border-radius: 100%;
	    background: #000;
	    /* opacity: .2; */
	}
	.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
	    width: 46px;
	    height: 20px;
	    display: inline-block;
	    border-radius: 20px;
	    background: #fff;
	    /* opacity: .2; */
	}
</style>


<