harmony 鸿蒙Custom Font Styles

  • 2022-08-09
  • 浏览 (638)

Custom Font Styles

The custom font can be loaded from the font file in a project. The font file must be in .ttf or .otf format.

NOTE

This component is supported since API version 4. Updates will be marked with a superscript to indicate their earliest API version.

Defining @font-face

@font-face {   
  font-family: font; 
  src: url('/common/font.ttf'); 
}

font-family

Customize a font.

src

Supported sources of custom fonts:

  • Font file in the project: Specify the absolute path of the font file in the project through url. For details, see File Access Rules.

  • You can set only one src attribute.

Using font-face

You can set font-face in style and specify the name of the font-face using font-family.

Example

Page layout:

<!-- xxx.hml -->
<div>    
  <text class="demo-text">Test the custom font.</text>  
</div>

Page style:

/*xxx.css*/
@font-face {
  font-family: font;
  src: url("/common/font.ttf");
}
.demo-text {
  font-family: font;
}

你可能感兴趣的鸿蒙文章

harmony 鸿蒙JavaScript-compatible Web-like Development Paradigm

harmony 鸿蒙Data Type Attributes

harmony 鸿蒙button

harmony 鸿蒙chart

harmony 鸿蒙divider

harmony 鸿蒙image-animator

harmony 鸿蒙image

harmony 鸿蒙input

harmony 鸿蒙label

harmony 鸿蒙marquee

0  赞