自定义css 输入框粘贴以下代码
/* 加载「霞鹜文楷」在线字体 */
body{font-family: "LXGW WenKai Screen", sans-serif !important;}
自定义JS 输入框粘贴以下代码
// 更改字体
function changeFont() {
const link = document.createElement("link");
link.rel = "stylesheet";
link.type = "text/css";
link.href = "https://cdn.staticfile.org/lxgw-wenkai-screen-webfont/1.6.0/lxgwwenkaiscreen.css";
document.head.append(link);
};
changeFont();
暂无评论