自定义微信小程序swiper轮播图面板指示点的样式

Posted jianxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义微信小程序swiper轮播图面板指示点的样式相关的知识,希望对你有一定的参考价值。

微信小程序的swiper组件是滑块视图容器,也就是说平常我们看到的轮播图就可以用它来做,不过这个组件有很多样式是固定的,但是,有时候我们的设计稿的面板指示点是需要个性化的,那么如何去修改swiper组件的面板指示点的样式呢?最近在使用swiper的时候也在想这个,最后发现在调试的时候,可以看到他的选择器。如图:

技术图片

技术图片

技术图片

1
2
3
4
5
6
7
8
9
<swiper class="swiper-box" indicator-dots=" indicatordots " autoplay=" autoplay ">
    <block wx:for=" swiperItem ">
        <swiper-item>
            <navigator url=" item.linkUrl ">
                <image class="slide-image" src=" item.imgUrl "></image>
            </navigator>
        </swiper-item>
    </block>
</swiper>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.swiper-box .wx-swiper-dots.wx-swiper-dots-horizontal
     margin-bottom2rpx;
.swiper-box .wx-swiper-dot
    width:40rpx;
    display: inline-flex;
    height10rpx;
    margin-left20rpx;
    justify-content:space-between;
.swiper-box .wx-swiper-dot::before
    content‘‘;
    flex-grow: 1
    background: rgba(255,255,255,0.8);
    border-radius: 8rpx
.swiper-box .wx-swiper-dot-active::before
    background:rgba(244,0,0,0.8);   

技术图片  

虽然可以通过上面的代码修改swiper面板指示点的样式,但是还是有局限性的,不过总算可以修改了,在此简单记录一下。。 

 

 

 

 

 

.

以上是关于自定义微信小程序swiper轮播图面板指示点的样式的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序自定义swiper轮播图面板指示点的位置

微信小程序轮播图组件 swiper,swiper-item及轮播图片自适应

小程序轮播图样式

小程序swiper轮播图不显示

微信小程序之swiper标签

微信小程序开发 | 02 - 轮播图实现(swiper组件)