sdfsdfs
This commit is contained in:
17
node_modules/pixi.js/lib/scene/text-html/utils/loadFontCSS.js
generated
vendored
Normal file
17
node_modules/pixi.js/lib/scene/text-html/utils/loadFontCSS.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
'use strict';
|
||||
|
||||
var loadFontAsBase64 = require('./loadFontAsBase64.js');
|
||||
|
||||
"use strict";
|
||||
async function loadFontCSS(style, url) {
|
||||
const dataSrc = await loadFontAsBase64.loadFontAsBase64(url);
|
||||
return `@font-face {
|
||||
font-family: "${style.fontFamily}";
|
||||
src: url('${dataSrc}');
|
||||
font-weight: ${style.fontWeight};
|
||||
font-style: ${style.fontStyle};
|
||||
}`;
|
||||
}
|
||||
|
||||
exports.loadFontCSS = loadFontCSS;
|
||||
//# sourceMappingURL=loadFontCSS.js.map
|
Reference in New Issue
Block a user