uniapp如何改变轮播图的圆点样式
5***@qq.com
- 发布:2019-01-22 10:42
- 更新:2020-12-23 17:44
- 阅读:9722
uniapp如何改变轮播图的圆点样式
分类:uni-app
app.vue 直接修改 uni-swiper .uni-swiper-dot {
display: inline-block;
width: 14px !important;
height: 4px !important;
cursor: pointer;
-webkit-transition-property: background-color;
transition-property: background-color;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
background: rgba(255, 255, 255, .3);
border-radius: 5px !important
}
uni-swiper .uni-swiper-dot-active {
width: 20px !important;
background-color: #fff !important;
}