codecamp

快应用 自定义字体样式

font-face​ 用于定义字体样式。当需要为文本组件设置自定义字体时,可以在​ style ​中定义 font-​face​ 作为自定义字体,然后在 ​font-family​ 中可以引用该字体。

自定义字体可以是从项目中的字体文件或网络字体文件中加载的字体。

注: 只支持 ttf 和 otf 格式的字体。

定义 font-face

@font-face {
  font-family: myfont;
  src: url('http://www.example.com/myfont.ttf');
}

font-family

自定义字体的名称。

src

自定义字体的来源。

目前支持的字体来源有 2 种:

  • 项目中的字体文件: 通过 ​url​ 指定项目中的字体文件路径(只支持绝对路径)
  • 网络字体文件:通过 ​url​ 指定网络字体的地址

使用 font-face

在 ​style​ 中定义了 ​font-face​ 后,我们可以在文本组件的 ​font-family​ 样式中指定 ​font-face 的名称,该组件即可应用 ​font-face​ 定义的字体。 ​font-face​ 中暂不支持设置多个 ​src​ 。

示例

<template>
  <!-- template里只能有一个根节点 -->
  <div class="demo-page">
    <text class="font">测试自定义字体 test custom font</text>
  </div>
</template>

<style>
  @font-face {
    font-family: myfont;
    src: url("http://www.example.com/myfont.ttf");
  }
  .demo-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .font {
    font-family: myfont, serif;
  }
</style>

font-family-demo

图标字体(icon-font)

将图标制作成字体文件,保存到项目文件中(如:src/Common/iconfont.ttf),在 ​style​ 中定义一个 ​font-face​ ,然后在需要使用图标字体的地方使用该​font-face​ 作为组件的字体,组件的内容为字体文件中我们需要使用的图标的字符。

示例

<template>
  <!-- template里只能有一个根节点 -->
  <div class="demo-page">
    <text>测试text中嵌套iconfont<span class="icon-font-span">&#xe822;</span>test icon font</text>
  </div>
</template>

<style>
  @font-face {
    font-family: iconfont;
    src: url("/Common/iconfont.ttf");
  }
  .demo-page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .icon-font-span {
    font-family: iconfont;
    font-size: 40px;
    color: #ff0000;
  }
</style>

icon-font-demo

font-family   示例代码

查看示例代码


快应用 背景图样式
快应用 div组件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

快应用 参考手册

快应用 安全

快应用 声音音频

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }