首页 > 其他分享 >【博客园主题美化】《 那些年换过的主题 - 03 》

【博客园主题美化】《 那些年换过的主题 - 03 》

时间:2024-01-16 13:34:48浏览次数:22  
标签:03 enable name true 博客园 主题 https com weiyigeek

主题展示

重点

博客园一定要申请JS权限!

这个美化使用的主题是 Custom;使用highlight.js渲染引擎!!!要禁用 主题本身的默认Css!!!

基础主题设置如下:

页面定制Css代码

代码

#loading{bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999;background-color:#f4f5f5;pointer-events:none;}.loader-inner{will-change:transform;width:40px;height:40px;position:absolute;top:50%;left:50%;margin:-20px 0 0 -20px;background-color:#3742fa;border-radius:50%;animation:scaleout 0.6s infinite ease-in-out forwards;text-indent:-99999px;z-index:999991;}@keyframes scaleout{0%{transform:scale(0);opacity:0;}40%{opacity:1;}100%{transform:scale(1);opacity:0;}}

页首HTML代码

代码

<div id="loading"><div class="loader-inner"></div></div>

页脚HTML代码

代码

<script src="https://guangzan.gitee.io/awescnb/index.js"></script>
<script>
 const opts = {
    theme: {
      name: 'geek',
      url: "https://acnblogs.gitee.io/acnb-theme-geek/index.iife.js",
      log: true,
      avatar: "https://images.cnblogs.com/cnblogs_com/blogs/788794/galleries/2372728/o_240116051044_6-22061G41215.jpg",
      // "https://blog-static.cnblogs.com/files/blogs/775095/733a851cc36cbf615c31123bfebd85e.gif?t=1668011108", //头像
      headerBackground:
        "https://blog-static.cnblogs.com/files/blogs/775095/1.gif?t=1668326814", //背景
    },
    highLight: {
      enable: true,
    },
    lineNumbers: {
      enable: true,
    },
    github: {
      enable: false,
      url: "https://github.com/tiansztiansz",
    },
    gitee: {
      enable: false,
      url: 'https://gitee.com/weiyigeek',
    },
    click: {
      enable: true,
    },
    emoji: {
      enable: true,
    },
    darkMode: {
      enable: true,
      autoDark: true,
      autoLight: false,
    },
    qrcode: {
      enable: false,
      img: 'https://weiyigeek.top/img/wechat-search.png',
      desc: 'WeiyiGeek 公众号',
    },
    donation: {
      enable: false,
      qrcodes: ['https://cdn.jsdelivr.net/gh/weiyigeek/weiyigeek.github.io/img/reward-alipay.png'],
    },
    signature: {
      enable: true,
      contents: [
        "<b>为了能到远方,脚下的每一步都不能少.</b>",
        "Always keep a beginner's mind, don't forget the beginner's mind.",
        "<b>花开堪折直须折,莫待无花空折枝。</b>",
        "<b>一件事情不付诸实践,即使在心里想一万遍也是徒然。</b>",
        "<b>一沙一世界,一花一天堂。君掌盛无边,刹那成永恒。</b>",
        "<b>

标签:03,enable,name,true,博客园,主题,https,com,weiyigeek
From: https://www.cnblogs.com/-CO-/p/17967455

相关文章

  • 【博客园主题美化】《 那些年换过的主题 - 02 》
    主题展示重点博客园一定要申请JS权限!这个美化使用的主题是Custom;要禁用主题本身的默认Css!!!基础主题设置如下:博客侧边栏公告代码<script>window.$silence={avatar:'https://images.cnblogs.com/cnblogs_com/esofar/972540/o_avatar.jpg',fa......
  • 【博客园主题美化】《 那些年换过的主题 - 01 》
    主题展示重点博客园一定要申请JS权限!这个美化使用的主题是SimpleMemory;不禁用主题本身的默认Css!!!基础主题设置如下:博客侧边栏公告代码<!--头像--><divclass="av"><imgclass="but"itemprop="image"src="https://images.cnblogs.com/cnblogs_com/lingr7/1......
  • 调整jupyter notebook 背景主题颜色
    为保护视力,调整jupyternotebook背景颜色。有看过一些帖子也都试过一些背景,目前感觉比较舒适的背景,其设置过程如下。记录下来备忘。参考链接:https://blog.csdn.net/wh8514/article/details/81532286————————安装Jupyter主题:pipinstalljupyterthemes然后,更新Jup......
  • P1003题解
    简单模拟题。思路枚举每一个地毯,因为后面的会覆盖前面的,所以从正序枚举。如果要求的点的坐标在当前地毯上,则将答案赋值为当前地毯编号。最后输出答案。那如果这个点没有地毯呢?答案初始设为\(-1\),这样没有地毯覆盖的话,答案不会改变,这样输出答案就会是\(-1\)。注意:记得赋初......
  • 【题解】gym103743 (2022 JSCPC)
    A.PENTAKILL!考虑直接模拟,规则就是一个人将其他人全部都击杀,并且中间没有重复击杀。code:#include<bits/stdc++.h>usingnamespacestd;map<string,vector<string>>st;intn;stringa,b;intmain(){cin>>n;for(inti=1;i<=n;++i){ci......
  • SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents
    热烈欢迎,请直接点击!!!进入博主AppStore主页,下载使用各个作品!!!注:博主将坚持每月上线一个新app!!1、打开路径文件夹:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/2、新建文件夹:arc3、下载文件:https://github.com/kamyarelya......
  • 03-标识符
    ......
  • 关于gunicorn与异步兼容性问题:AttributeError: module 'select' has no attribute 'ep
    关于gunicorn与异步兼容性问题:AttributeError:module'select'hasnoattribute'epoll'背景:介绍:  在使用gunicorn、Flask&flask-sockets部署,实现websocket协议中同类消息阻塞,不同类消息不阻塞场景。异常:[2024-01-1510:22:16+0800][31655][ERROR]Ex......
  • PAT乙级 P1003 我要通过!
    题目链接:由于需要统计字符串中各字符的出现次数,考虑使用\(\rmmap\)来进行统计。字符串中只有\(\rmP,A,T\)三种字母\(\longrightarrow\rmmap.size()==3\)题目仅给出了几条规则,因此我们将可能正确的结果罗列出来,看看能否找到一些规律。分析:任意形如xPATx的字符串都可以......
  • 服务器出现500、502、503错误的原因以及解决方法
    服务器我们经常会遇到访问不了的情况有的时候是因为我们服务器被入侵了所以访问不了,有的时候是因为出现了服务器配置问题,或者软硬件出现问题导致的无法访问的问题,这时候会出现500、502、503等错误代码。基于以上问题我们第一步可以先重启服务器,一般重启服务器可以解决大多数问题,如......