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"
坚持就是胜利啊!