🐛 字体不正确

This commit is contained in:
崮生 2020-03-20 11:06:23 +08:00
parent 39bf693673
commit 96fea03ae6
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<script>
import { writable } from 'svelte/store';
import { get_font, get_font_list } from './req';
import { get_font, get_font_list,server } from './req';
/** 可用的字体列表 {id:number,name:string:selected:undefined | boolen,css:undefined|string}*/
$: font_list = [];
get_font_list().then(r => {
@ -13,6 +13,11 @@
selected_font.forEach(font => {
get_font(font.name, text)
.then(r => {
console.log(r);
r=r.replace(/\/\/.*?\//g,server)
console.log(r);
const family = r.match(/font-family: "(.*)"/)[1];
font.css = r;
font.family = family;

View File

@ -1,4 +1,4 @@
const server=location.href
export const server='//'+location.host+location.pathname
export function get_font(font:string, text:string) {
return new Promise((rs, re) => {
var xhr = new XMLHttpRequest();