mirror of
https://github.com/2234839/web-font.git
synced 2025-04-06 05:25:44 +08:00
🐛 字体不正确
This commit is contained in:
parent
39bf693673
commit
96fea03ae6
@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import { writable } from 'svelte/store';
|
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}*/
|
/** 可用的字体列表 {id:number,name:string:selected:undefined | boolen,css:undefined|string}*/
|
||||||
$: font_list = [];
|
$: font_list = [];
|
||||||
get_font_list().then(r => {
|
get_font_list().then(r => {
|
||||||
@ -13,6 +13,11 @@
|
|||||||
selected_font.forEach(font => {
|
selected_font.forEach(font => {
|
||||||
get_font(font.name, text)
|
get_font(font.name, text)
|
||||||
.then(r => {
|
.then(r => {
|
||||||
|
console.log(r);
|
||||||
|
|
||||||
|
r=r.replace(/\/\/.*?\//g,server)
|
||||||
|
console.log(r);
|
||||||
|
|
||||||
const family = r.match(/font-family: "(.*)"/)[1];
|
const family = r.match(/font-family: "(.*)"/)[1];
|
||||||
font.css = r;
|
font.css = r;
|
||||||
font.family = family;
|
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) {
|
export function get_font(font:string, text:string) {
|
||||||
return new Promise((rs, re) => {
|
return new Promise((rs, re) => {
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user