由于某个原神玩家看腻了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 条评论

  • @ 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-17 20:25:03

      现在更改了吗?@

      • @ 2023-3-17 20:41:00

        NO

      • @ 2023-3-17 20:41:10

        撤回了

    • @ 2023-3-15 17:18:30

      我觉得可以吧,但是加载应该快些的

      • @ 2023-3-15 17:59:29

        太慢了真的受不了的,(虽然我不知道是不是sidecar的问题)

    • @ 2023-3-15 17:14:12

      或者安装字体后进入(谷歌浏览器,其他浏览器百度XX浏览器更改默认字体)设置更改所有默认字体为“SDK_SC_Web 85W”。

      • @ 2023-3-15 17:15:20

        但是这样做会让很多网站都变成这个字体,且MCOI部分字体不会跟着换成对应字体

    • @ 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