com.herewhite.sdk.domain.FontFace类 参考
字体配置文件,与 CSS 中的 FontFace 属性对应。
自从
2.11.2
构造及析构函数说明
FontFace()
com.herewhite.sdk.domain.FontFace.FontFace | ( | String | name, |
String | src | ||
) |
参数
参数名 | 描述 |
---|---|
name | 字体名称,需要和 CSS 中 font-family 字段的值对应。 |
src | 字体文件的地址,需要和 CSS 中 src 字段的值对应。支持的格式为 url() ,表示指向远程字体文件位置,例如,url("https://white-pan.oss-cn-shanghai.aliyuncs.com/Pacifico-Regular.ttf") 。 |
成员函数说明
getFontStyle()
setFontStyle()
void com.herewhite.sdk.domain.FontFace.setFontStyle | ( | String | fontStyle | ) |
设置字体样式。
参数
参数名 | 描述 |
---|---|
fontStyle | 字体样式,需要和 CSS 中 font-style 字段的值对应,取值包括:
|
getFontWeight()
setFontWeight()
void com.herewhite.sdk.domain.FontFace.setFontWeight | ( | String | fontWeight | ) |
设置字体粗细。
参数
参数名 | 描述 |
---|---|
fontWeight | 字体粗细,需要和 CSS 中 font-weight 字段的值对应。 |
getUnicodeRange()
setUnicodeRange()
void com.herewhite.sdk.domain.FontFace.setUnicodeRange | ( | String | unicodeRange | ) |
设置字体的字符编码范围。
参数
参数名 | 描述 |
---|---|
unicodeRange | 字体的字符编码范围,需要和 CSS 中 unicode-range 字段的值对应。 |