页面样式与布局

熟悉基础知识,掌握 Flex 布局,了解动态修改样式、引入 less 预编译的方法

通过本节,你将学会:

  • 盒模型
  • 长度单位
  • 设置样式
  • Flex 布局示例
  • 动态修改样式
  • 引入 less 预编译
  • 使用 postcss 解析 css

盒模型

框架使用 border-box 模型,暂不支持 content-box 模型与 box-sizing 属性

布局所占宽度 Width:

Width = width(包含padding-left + padding-right + border-left + border-right)

布局所占高度 Height:

Height = height(包含padding-top + padding-bottom + border-top + border-bottom)

长度单位

框架目前仅支持长度单位px%。与传统 web 页面不同,px是相对于项目配置基准宽度的单位,已经适配了移动端屏幕,其原理类似于rem

开发者只需按照设计稿确定框架样式中的 px 值即可。设计稿1px框架样式1px转换公式如下:

设计稿1px / 设计稿基准宽度 = 框架样式1px / 项目配置基准宽度

项目配置基准宽度:项目的配置文件(<ProjectName>/src/manifest.json)中config.designWidth的值,默认为 750

示例如下:

若设计稿宽度为 640px,元素 A 在设计稿上的宽度为 100px,实现的两种方案如下:

方案一:

修改项目配置基准宽度:将项目配置基准宽度设置为设计稿基准宽度,则框架样式1px等于设计稿1px

  • 设置项目配置基准宽度,在项目的配置文件(<ProjectName>/src/manifest.json)中,修改config.designWidth
  1. {
  2. "config": {
  3. "designWidth": 640
  4. }
  5. }
  • 设置元素 A 对应的框架样式:
  1. width: 100px;

方案二:

不修改项目配置基准宽度:若当前项目配置的项目配置基准宽度为 750,设元素 A 的框架样式 xpx,由转换公式得:100 / 640 = x / 750

  • 设置元素 A 对应的框架样式:
  1. width: 117px;

设置样式

开发者可以使用内联样式tag选择器class选择器id选择器来为组件设置样式

同时也可以使用并列选择后代选择器设置样式

示例如下:

  1. <template>
  2. <div class="tutorial-page">
  3. <text style="color: #FF0000;">内联样式</text>
  4. <text id="title">ID选择器</text>
  5. <text class="title">class选择器</text>
  6. <text>tag选择器</text>
  7. </div>
  8. </template>
  9. <style>
  10. .tutorial-page {
  11. flex-direction: column;
  12. }
  13. /* tag选择器 */
  14. text {
  15. color: #0000FF;
  16. }
  17. /* class选择器(推荐) */
  18. .title {
  19. color: #00FF00;
  20. }
  21. /* ID选择器 */
  22. #title {
  23. color: #00A000;
  24. }
  25. /* 并列选择 */
  26. .title, #title {
  27. font-weight: bold;
  28. }
  29. /* 后代选择器 */
  30. .tutorial-page text {
  31. font-size: 42px;
  32. }
  33. /* 直接后代选择器 */
  34. .tutorial-page > text {
  35. text-decoration: underline;
  36. }
  37. </style>

Flex 布局示例

框架使用Flex布局,关于Flex布局可以参考外部文档A Complete Guide to Flexbox等,这里不做过多讲解

div 组件为最常用的 Flex 容器组件,具有 Flex 布局的特性;text、a、span、label 组件为文本容器组件,其它组件不能直接放置文本内容

示例如下:

<template>
  <div class="tutorial-page">
    <div class="item">
      <text>item1</text>
    </div>
    <div class="item">
      <text>item2</text>
    </div>
  </div>
</template>

<style>
  .tutorial-page {
    /* 交叉轴居中 */
    align-items: center;
    /* 纵向排列 */
    flex-direction: column;
  }
  .tutorial-page > .item {
    /* 有剩余空间时,允许被拉伸 */
    /*flex-grow: 1;*/
    /* 空间不够用时,不允许被压缩 */
    flex-shrink: 0;
    /* 主轴居中 */
    justify-content: center;
    width: 200px;
    height: 100px;
    margin: 10px;
    background-color: #FF0000;
  }
</style>

动态修改样式

动态修改样式有多种方式,与传统前端开发习惯一致,包括但不限于以下:

  • 修改 class :更新组件的 class 属性中使用的变量的值
  • 修改内联 style :更新组件的 style 属性中的某个 CSS 的值
  • 修改绑定的对象:通过绑定的对象控制元素的样式 1030+
  • 修改绑定的样式字符串:通过样式字符串控制元素的样式 1030+示例如下:
<template>
  <div style="flex-direction: column;">
    <!-- 修改 class -->
    <text class="normal-text {{ className }}" onclick="changeClassName">点击我修改文字颜色</text>
    <!-- 修改内联 style -->
    <text style="color: {{ textColor }}" onclick="changeInlineStyle">点击我修改文字颜色</text>
    <!-- 修改绑定的对象 (1030+) -->
    <text style="{{ styleObj }}" onclick="changeStyleObj">点击我修改文字颜色</text>
    <!-- 修改绑定的样式字符串 (1030+) -->
    <text style="{{ styleText }}" onclick="changeStyleText">点击我修改文字颜色</text>
  </div>
</template>

<style>
  .normal-text {
    font-weight: bold;
  }
  .text-blue {
    color: #0faeff;
  }
  .text-red {
    color: #f76160;
  }
</style>

<script>
  export default {
    private: {
      className: 'text-blue',
      textColor: '#0faeff',
      styleObj: {
        color: 'red'
      },
      styleText: 'color: blue'
    },
    onInit () {
      this.$page.setTitleBar({ text: '动态修改样式' })
    },
    changeClassName () {
      this.className = 'text-red'
    },
    changeInlineStyle () {
      this.textColor = '#f76160'
    },
    changeStyleObj () {
      this.styleObj = {
        color: 'yellow'
      }
    },
    changeStyleText () {
      this.styleText = 'color: green'
    }
  }
</script>

引入 less 预编译

less 语法可以参考外部文档Less.js 中文文档等,这里不做过多讲解

使用 less 请先安装相应的类库:lessless-loader,详见文档style 样式 —> 样式预编译;然后在<style>标签上添加属性lang="less"

示例如下:

<template>
  <div class="tutorial-page">
    <text id="title">less示例!</text>
  </div>
</template>

<style lang="less">
  /* 引入外部less文件 */
  @import './style.less';
  /* 使用less */
  .tutorial-page {
    justify-content: center;
    background-color: #00beaf;

    #title {
      color: #FF0000;
    }
  }
</style>

使用 postcss 解析 css

快应用支持 postcss 来解析 css,看 postcss 的官方文档都知道,postcss 可以采用类似 less,sass 的语法来解析 css 了,比如支持变量,嵌套,定义函数等功能了。

使用 postcss 解析 css 分为 3 个步骤:

1.安装对应的 loader

npm i postcss-loader precss@3.1.2 -D

2.在项目的根目录新建一个 postcss.config.js,增加如下内容:

module.exports = {
  plugins: [require('precss')]
}

其中 precss 为 postcss 的插件。

3.在页面对应的 style 标签上增加 lang="postcss",如下

<style lang="postcss">

  /* 使用postcss */
  .tutorial-page {
    justify-content: center;
    background-color: #00beaf;
    #title {
      color: #FF0000;
    }
  }
</style>

这样你就可以在 css 里面书写对应的代码了。

说明:

如果你想支持更多的语法格式,可以在 postcss.config.js 文件里面添加更多的插件,关于 postcss 的插件见插件地址

总结

了解页面的样式与布局后,开发者就可以着手设计开发页面了