mirror of
https://github.com/2234839/web-font.git
synced 2025-04-05 20:35:50 +08:00
🐛 字体不正确
This commit is contained in:
parent
39bf693673
commit
96fea03ae6
@ -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;
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user