微信小程序开发之——视图全屏显示
一 概述
本文介绍两种将view全屏显示的方式:
- 布局文件设置宽度和高度
- 代码中获取到屏幕的宽度和高度,设置到view上
二 布局设置宽高全屏
2.1 布局文件(index.wxml)
1 | <view style="background-color: coral;"> |
2.2 样式文件(index.wxss)
1 | view{ |
三 代码获取到屏幕的宽度和高度设置全屏
3.1 布局文件(index.wxml)
1 | <view style="background-color: coral; width: {{swidth}}px; height: {{sheight}}px;"> |
3.2 逻辑文件(index.js)
1 | onLoad: function (options) { |