swiper框架轮播图小圆点样式不起作用
不要加 scoped
swiper小圆点默认样式改变
swiper框架轮播图小圆点样式不起作用 不要加 scoped下面是错误写法
<style scoped>
.swiper-pagination-bullet-active {
background: white;
}
</style>
正确写法
<style >
.swiper-pagination-bullet-active {
background: white;
}
</style>
swiper小圆点默认样式改变
开发过程中swiper样式不喜欢,想要修改小圆点样式,拿到swiper下的小圆点进行修改,去设置想要的颜色,点与点之间的间距等等一系列样式
/* 圆点的样式 */
swiper .wx-swiper-dot {
width: 35rpx;
height: 7rpx;
border-radius: 50%;
display: inline-flex;
margin-left: 19rpx;
justify-content: space-between;
}
swiper .wx-swiper-dot::before {
content: '';
flex-grow: 1;
background: #fff;
border-radius: 50%;
}
swiper .wx-swiper-dot-active::before {
background: rgba(255, 255, 255, .8);
}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持易知道(ezd.cc)。