swiper 自定义分页器的使用

网上关于swiper 自定义分页器的方法比较多,但是已经不适合使用。它的API又比较坑爹,什么都是点到为止,不说清楚。因为要做一个产品颜色切换的效果,有黑与白两种颜色,因此尝试使用Swiper的自定义分页定义产品的颜色,看下图:

 
swiper 默认的切换是不以这种产品的颜色来定的,因此,要先写好颜色的分页器:
<div class="swiper-pagination ubolt-swiper-pagination">
    <span class="swiper-pagination-bullet ubolt-black">span>
    <span class="swiper-pagination-bullet ubolt-white">span>
div>
                .swiper-pagination-bullet{
                                width: 40px;
                                height: 40px;
                                border-radius: 50%;
                                display: inline-block;
                                opacity: .5;
                                cursor: pointer;
                                border: 2px solid #979797;
                                transition: all .05s ease-in;
                            }
                            .ubolt-black{
                                background: #0E0E0E;
                            }
                            .ubolt-white{
                                background: #D8D8D8;
                            }

在Swiper的方法中作如下定义,自定义分页器使用了 renderBullet 方法,通过判断 index 来定义产品的颜色,方法中的参数 className 我也没用到,直接 return 了两个颜色的节点:

 

你可能感兴趣的:(javascript,ViewUI)