壹影博客.
我在下午4点钟开始想你
给网页添加全局Js质感字体
  • 2020-5-3日
  • 0评论
  • 1644围观

 

给网页添加全局Js质感字体

使用前效果

 使用后效果

 

 

默认Js代码

(function() {
var font_style = document.createElement("style");
    font_style.type = 'text/css';
    font_style.innerHTML = " *:not([class*='icon']):not(.fa):not(.fas):not(i) {font-family: 'PingFang SC','Heiti SC','myfont','Microsoft YaHei','Source Han Sans SC','Noto Sans CJK SC','HanHei SC', 'sans-serif' ,'icomoon','Icons' ,'brand-icons' ,'FontAwesome','Material Icons','Material Icons Extended','Glyphicons Halflings'  !important;} *{text-shadow:1px 1px 10px #c3c3c3 !important; font-weight:bold !important;font-family: 'PingFang SC','Microsoft YaHei';}";
document.head.append(font_style);
})();

 

 

发表评论