zoukankan      html  css  js  c++  java
  • 如何自定义微信小程序swiper轮播图面板指示点的样式

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

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

    具体代码如下所示:

    <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-box .wx-swiper-dots.wx-swiper-dots-horizontal{
         margin-bottom: 2rpx;
    }
    .swiper-box .wx-swiper-dot{
        40rpx;
        display: inline-flex;
        height: 10rpx; 
        margin-left: 20rpx;
        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);    
    }
    

      

    效果:

  • 相关阅读:
    Kali 查看系统信息的一些命令及查看已安装软件包的命令
    mysql_对于DQL 的简单举例
    java简单分析LinkedList
    java_简单解析ArrayList_iterable
    java_随机密码
    rsync 服务基础配置讲解
    DNS服务器的基础
    NFS服务器配置
    DHCP服务器配置
    VSFTP 配置详解,附带例子
  • 原文地址:https://www.cnblogs.com/shaozhu520/p/14648221.html
Copyright © 2011-2022 走看看