2016.11.11tabs切換,添加滑動動畫。
/*/*/*/*/*/*/*/*/*//*/*/*/*/*/*/*/*/*//*/*/*/*/*/*/*/*/*//*/*/*/*/*/*/*/*/*//*/*/*/*/*/*/*/*/*//*/*/*/*/*/*/*/*/*/
2016.11.10日新增,tabs切換,點擊菜單切換,滑動切換。
---------------------------------------------------------------------------------------------------------------------
微信小程序swiper個性化定制,微信已經提供的組件不能應付當前的開發需求。
因此,對微信小程序swiper的指示器做了下修改。
效果如下:
對樣式文件即*.wxss文件做如下修改
1 page .wx-swiper-dots.wx-swiper-dots-horizontal{ 2 margin-bottom: -4rpx; 3 } 4 5 page .wx-swiper-dot{ 6 width: 252rpx; 7 display: inline-flex; 8 height: 18rpx; 9 vertical-align: sub; 10 11 } 12 13 14 15 16 page .wx-swiper-dot::before{ 17 content: ''; 18 background: #e5e5e5; 19 flex-grow: 1; 20 } 21 22 page .wx-swiper-dot-active::before{ 23 content: ''; 24 background:rgba(240,0,0,0.8); 25 flex-grow: 1; 26 }
源碼地址如下:
https://github.com/toxufe/wx-swiper.git
https://git.coding.net/tongxiaodie/wx_swiper.git