- meta
- API
- setViewport(options)
- 参数
- 例子
- setViewport(options)
- API
meta
meta 模块可用于声明单个页面的元信息,通常是一些页面的配置,如容器的显示宽度 (viewport) 等。
API
setViewport(options)
0.10.0+
Weex 容器默认的宽度 (viewport) 是 750px,通过 setViewport 方法可以改变页面的显示宽度,仅对当前页面生效。
需要注意的是:只有在页面渲染开始之前设置 viewport 才会生效。 也就是说,setViewport 方法只能在入口文件中使用,而且要在
new Vue(...)
之前调用;如果是在组件中使用,就只有在渲染到该组件的时候才会执行相应的代码,此时页面已经处于渲染过程中,设置 viewport 将不会再生效。
参数
参数配置借鉴了 W3C 标准中的 CSS Device Adaptation,目前支持如下属性:
options
: viewport 的配置项width
: 数值,或者"device-width"
和"device-height"
之一。height
: 数值,或者"device-width"
和"device-height"
之一。
宽度和高度的单位默认是 px
,暂不支持其他单位。
例子
入口文件:
// entry.js
import App from './app.vue'
const meta = weex.requireModule('meta')
// 配置 viewport 的宽度为 640px
meta.setViewport({
width: 640
})
App.el = '#root'
new Vue(App)
在入口文件中配置了 viewport 的宽度为 640 之后,当前页面中的所有组件都会以 640px 作为满屏宽度。
组件文件:
<!-- app.vue -->
<template>
<div>
<div class="box750">
<text class="text">750</text>
<div class="box640">
<text class="text">640</text>
<div class="box480">
<text class="text">480</text>
</div>
</div>
</div>
</div>
</template>
<style scoped>
.box750 {
width: 750px;
height: 750px;
background-color: #EEEEEE;
}
.box640 {
width: 640px;
height: 640px;
background-color: #CCCCCC;
}
.box480 {
width: 480px;
height: 480px;
background-color: #AAAAAA;
}
.text {
font-size: 50px;
}
</style>
试试看。(由于 http://dotwe.org 目前还不支持配置入口文件,例子中的效果暂时无法在线查看。)
本地开发环境的搭建可以参考:《搭建开发环境》。