轮播图外层容器 swiper
1 swiper常用属性值
属性 | 类型 | 默认值 | 说明 |
autoplay | boolean | false | 是否自动切换 |
interval | number | 5000 | 自动切换时间间隔 |
circular | boolean | false | 是否采用衔接滑动 |
indicator-dots | boolean | false | 显示 指示器 分页器 索引器 |
indicator-color | color | rgba(0, 0, 0, .3) | 指示器的未选择的颜色 |
indicator-active-color | color | #000000 | 当前选中的指示点颜色 |
display-multiple-items | number | 1 | 同时显示的滑块数量 |
2 每一个轮播项 swiper-item
3 swiper标签 存在默认样式
1 width 100%
2 height 150px image 存在默认宽度和高度 320 * 240
3 swiper 高度 无法实现由内容撑开
4 先找出来 原图的宽度和高度 等比例 给swiper 定 宽度和高度
原图的宽度和高度 1125 * 352 px
swiper 宽度 / swiper 高度 = 原图的宽度 / 原图的高度
swiper 高度 = swiper 宽度 * 原图的高度 / 原图的宽度
wxml
<swiper autoplay interval="1000" circular indicator-dots indicator-color="#0094ff" indicator-active-color="#ff0094">
<swiper-item> <image mode="widthFix" src="//gw.alicdn.com/imgextra/i1/44/O1CN013zKZP11CCByG5bAeF_!!44-0-lubanu.jpg" /> </swiper-item>
<swiper-item> <image mode="widthFix" src="//aecpm.alicdn.com/simba/img/TB1CWf9KpXXXXbuXpXXSutbFXXX.jpg_q50.jpg" /> </swiper-item>
<swiper-item> <image mode="widthFix" src="//gw.alicdn.com/imgextra/i2/37/O1CN01syHZxs1C8zCFJj97b_!!37-0-lubanu.jpg" /> </swiper-item>
</swiper>
wxss
swiper {
width: 100%;
/* height: calc(100vw * 352 / 1125); */
height: 31.28vw;
}
image {
width: 100%;
}
在这里普及一下小程序中的image标签
支持 JPG、PNG、SVG、WEBP、GIF 等格式
属性 | 类型 | 默认值 | 说明 |
src | string |
默认的宽度和高度 320 * 240 | 图片资源地址 |
lazy-load | boolean | false | 图片懒加载,在即将进入一定范围(上下三屏)时才开始加载 |
mode | string | scaleToFill | 图片裁剪、缩放的模式 |
mode属性的值
属性 | 说明 |
scaleToFill |
默认值 不保持纵横比缩放图片,使图片的宽高完全拉伸至填满 image 元素 |
aspectFit |
保持宽高比 确保图片的长边 显示出来 页面轮播图 常用 |
aspectFill |
保持纵横比缩放图片,只保证图片的 短 边能完全显示出来。 少用 |
widthFix |
以前web的图片的 宽度指定了之后 高度 会自己按比例来调整 常用 |
bottom |
类似以前的backgroud-position |