原生组件的层级是最高的,所以页面中的其他组件无论设置 z-index 为多少,都无法盖在原生组件上。 后插入的原生组件可以覆盖之前的原生组件。 原生组件还无法在 scroll-view、swiper、picker-view、movable-view 中使用。 部分CSS样式无法应用于原生组件,例如: ...
分类:
微信 时间:
2018-09-27 22:16:51
阅读次数:
248
代码地址如下:http://www.demodashi.com/demo/14010.html 一、前期准备工作 软件环境:微信开发者工具 官方下载地址:https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html 1、基本需求。 ...
分类:
微信 时间:
2018-09-27 11:15:14
阅读次数:
276
Page({ data:{ imgheights: [],//所有图片的高度 current:0 } , imageLoa... ...
分类:
微信 时间:
2018-09-25 15:25:40
阅读次数:
1152
先隐藏swiper然后再显示swiper会发生宽度计算问题 ~在swiperOption中添加observeParent属性即可 // 先计算滚动了多少,一旦超过60,就隐藏abs,显示bar const scrolledDistance = document.documentElement.scr ...
分类:
其他好文 时间:
2018-09-25 11:32:02
阅读次数:
160
interval :图片跳转的时间间隔 autoplay:自动切换图片 indivstor-dots:图片下方的小圆点 效果图: ...
分类:
微信 时间:
2018-09-24 13:41:20
阅读次数:
201
autoHeight属性使用看官网的示例:https://www.swiper.com.cn/api/parameters/294.html swiper的选项卡结构查看:https://www.swiper.com.cn/demo/indexsample/ swiper的tab的一般DOM节点为: ...
分类:
其他好文 时间:
2018-09-18 16:07:55
阅读次数:
455
引入swiper.animate.css/swiper.animate.js(前提先引入swiper.css/swiper.js)在需要运动的元素上面增加类名aniswiper-animate-effect 切换效果 swiper-animate-duration 可选,动画持续时间swiper-a ...
分类:
其他好文 时间:
2018-09-18 00:35:37
阅读次数:
865
from: https://blog.csdn.net/osdfhv/article/details/79062427 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495 ...
分类:
其他好文 时间:
2018-09-15 23:18:07
阅读次数:
762
需求轮播图左右两边含有上一张和下一张的一部分 实现代码:1. import "swiper/dist/css/swiper.min.css"; 3.在你需要实现轮播的模块注册: import Swiper from "swiper"; 4.在template中写好结构: <!-- 轮播 --> <d ...
分类:
其他好文 时间:
2018-09-14 19:50:23
阅读次数:
1164
iscroll的dom元素的结构是固定的,swiper是容器,scroll是需要滚动的容器,list是滚动的内容 tips: 1、swiper定位必须为relative,并且高度设置固定值,overflow:hidden; 2、swiper的高度一定要小于scroll的高度 3、初始化uiscrol ...
分类:
其他好文 时间:
2018-09-13 14:23:13
阅读次数:
206