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