mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
36 lines
906 B
TypeScript
36 lines
906 B
TypeScript
export const server='//'+location.host+location.pathname
|
|
export function get_font(font:string, text:string) {
|
|
return new Promise((rs, re) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.addEventListener('readystatechange', function() {
|
|
if (this.readyState === 4) {
|
|
rs(JSON.parse(this.responseText)[0]);
|
|
}
|
|
});
|
|
xhr.open(
|
|
'GET',
|
|
`${server}fontmin?font=${encodeURIComponent(
|
|
font,
|
|
)}&text=${encodeURIComponent(text)}`,
|
|
);
|
|
xhr.onerror=re
|
|
xhr.send();
|
|
})
|
|
}
|
|
export function get_font_list(font:string, text:string) {
|
|
return new Promise((rs, re) => {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.addEventListener('readystatechange', function() {
|
|
if (this.readyState === 4) {
|
|
rs(JSON.parse(this.responseText));
|
|
}
|
|
});
|
|
xhr.open(
|
|
'GET',
|
|
`${server}font_list`,
|
|
);
|
|
xhr.onerror=re
|
|
xhr.send();
|
|
})
|
|
}
|