学习目标:
完成 首页 的设计
- 总目标:一周做完电商小程序并且写成毕业设计
学习内容:
1、 完成了轮播图
- 添加swiper与swiper-item标签
<!-- 图片原大小 1125 * 352 px -->
<view>
<swiper>
<swiper-item>
<image mode="widthFix" src="//img.alicdn.com/imgextra/i1/64/O1CN01rs7VTZ1CLM3CoqBOO_!!64-0-luban.jpg" />
</swiper-item>
</swiper>
</view>
- 定 宽 高
- 轮播宽度设为最宽,高度需要计算一下(swiper高度 = swiper宽度 * 原图的高度 / 原图的宽度)
- 图片宽度设为最宽
swiper{
width: 100%;
height: calc(100vw * 352 / 1125);
}
image{
width: 100%;
}
- 添加属性,让轮播图动起来
学习时间:
1、 下午 3 点—下午 6 点
学习产出:
优快云 技术博客 1 篇
Over
Good luck!