- 整活+更新
【作废】MCOI更换字体的通知
- 2023-3-12 19:31:52 @
由于某个原神玩家看腻了HYDRO现在的字体,于是更改了MCOI的字体,代码字体不便。
目前使用ghproxy存储,感谢ghproxy和github,感谢原神,感谢grasscutter F**k hoyoverse
反破译。
代码仍旧copyleft
:
<style> @font-face { font-family: gsip; src: url(https://ghproxy.com/https://raw.githubusercontent.com/mcoi-dev/MCOICDNS/main/zh-cn.ttf); } body { font-family: gsip; } </style>
目前第一次进入会下载7MB的字体,预计5秒钟,后续缓存秒响应
6 条评论
-
WTX 赞助!万岁! LV 6 SU @ 2023-3-17 20:45:30已修改
需要油猴插件加入:
// ==UserScript== // @name Genshin_Fonts_For_MCOI // @version 0.1 // @description try to take over the world! // @author WTX // @match http://43.139.175.183/* // ==/UserScript== (function() { 'use strict'; const style = document.createElement('style'); style.innerHTML = `<style> @font-face { font-family: gsip; src: url(https://ghproxy.com/https://raw.githubusercontent.com/mcoi-dev/MCOICDNS/main/zh-cn.ttf); } body { font-family: gsip; } p { font-family: gsip; } h1 { font-family: gsip; } h2 { font-family: gsip; } h3 { font-family: gsip; } h4 { font-family: gsip; } h5 { font-family: gsip; } h6 { font-family: gsip; } </style> `; document.head.append(style); //FUCK! })();
-
2023-3-15 17:18:30@
我觉得可以吧,但是加载应该快些的
-
2023-3-12 19:49:18@
需要的可以拿走源代码:
<style> @font-face { font-family: gsip; src: url(http://43.139.175.183/file/2/zh-cn.ttf); } body { font-family: gsip; } h1 { font-family: gsip; } h2 { font-family: gsip; } h3 { font-family: gsip; } h4 { font-family: gsip; } h5 { font-family: gsip; } h6 { font-family: gsip; } </style>
-
2023-3-12 19:48:15@
目前由于加载缓慢已经回退
- 1