egret:添加外部字体
Posted wentingc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了egret:添加外部字体相关的知识,希望对你有一定的参考价值。
- 将外部字体放在与index.html同目录下;
- 打开index.html文件;
- 在style中引入外部字体:
@font-face { font-family: ‘MyText‘; src:url(‘./font/MyText.ttf‘) ; }
- 在script里监听字体是否加载完成:
document.fonts.ready.then(success, fail); function success(){ egret.runEgret({renderMode:"webgl", audioType:0}); } function fail(){ }
- 直接引用:label.fontFamily ="MyText"
以上是关于egret:添加外部字体的主要内容,如果未能解决你的问题,请参考以下文章