Gmeek 博客完全依托 Github, 提供域名, 无需服务器, 比起传统的服务器建站更方便快捷.
搭建博客
如何搭建博客我就不写了, 强烈建议看完官方文档.
这里主要记录一些 js 和 CSS 的修改.记录的修改不一定准确, 因为改动的地方太多了🥴.
Warning
利用 Github Page 搭建的网站内容是完全公开的, 请注意不要上传自己的隐私!!!
博客调试
**为了方便调试代码, 创建了一个名为 demo 的仓库, 调试过程只会用 demo 演示, 确定后再同步代码到线上模式.
demo模式: https://gjken.github.io/demo
线上模式: https://gjken.github.io
线上模式的仓库用 tag 区分代码版本, release 可有可无, 主要是用来说明版本改动(懒得写)
Note
static 这个目录里的文件发生了改动, 一定要手动 Actions 之后, 再等待20多分钟(测试的大概结果)才会更新外链内容.
Config.json 小妙用
引用顺序
官方虽然没说, 但是经过我后面测试得出:
script
字段里面引用的 js 代码, 写在尾巴加载顺序越靠前!
其它字段还未测试过, 不知道是不是一样的道理.
subTitle - js插入
subTitle
字段可用 js 插入 html 实现修改文字.
代码:
"subTitle":"<script>document.getElementById('content').innerHTML = `<div style='text-align: center;'><p>CV工程师,</p><p>一个又菜又爱玩, 喜欢瞎折腾的流浪者.</p></div>`;</script>",
subTitle - 隐藏
"subTitle":" ",
- 效果图:
可以用空白字符的方式, 隐藏subTitle
这个必须字段, 无需使用 js 隐藏.
记录功能块代码
代码摘抄自网络, 有删改, 都存放在仓库, 使用 jsdelivr CDN 加速.
ArticleJs.js - 文章自定义 js 代码
图片图片浏览器+图片懒加载整合
👇这里说明一下, 图片浏览器和图片懒加载的整合后的工作流程:
点击展开
Gmeek-imgbox
首先匹配到关键字后转化标签.
Gmeek.py
匹配转换的代码如下:
# 剧透
if '<code class="notranslate">Gmeek-spoilertxt' in post_body:
post_body = re.sub(r'<code class="notranslate">Gmeek-spoilertxt="([^"]+)"</code>', lambda match: f'<span class="spoilerText">{match.group(1)}</span>', post_body, flags=re.DOTALL)
markdown 输入:
`Gmeek-imgbox="https://example.com/image.jpg"`
实际转化后的标签如下:
<div class="ImgLazyLoad-circle"></div>
<img data-fancybox="gallery" img-src="https://example.com/image.jpg">
<!--
一个图片未加载时的占位 CSS 动画 DIV, 类名为 .ImgLazyLoad-circle, 这个类名的 CSS 动画我写在了 primer.css 里面.
一个 img 标签, 包含 fancybox 所需的 data-fancybox="gallery" 值.
-->
当页面加载完成后, 使用 IntersectionObserver 监听图片是否进入视口, 图片会提前 500px 接近视口时加载
当图片即将进入视口时, 脚本会检测标签里面的img-src="https://example.com/image.jpg"
内容, 给 img 标签增加src
值, 这样图片就能显示了.
在 CSS 中 img 标签默认模糊并且透明图片, 脚本会等待图片加载完成后才会正常显示, 显示图片之前会隐藏掉占位转圈动画, 这样就实现了转圈动画消失并显示正常的图片.
图片加载失败则会创建指定的 SVG 图标以及文字提示, 同时隐藏加载失败的 img 标签和占位动画.
大概就是这样的一个流程.
ArticleToc.js - 文章增加目录列表+一键返回顶部按钮(v1.0)
摘抄来源: Github
修改-创建.toc
的位置为body里面.
修改-批量给 a 标签创建的类名为:toc-h1
toc-h2
...toc-h6
修改-适配切换博客主题颜色.
修改-增加滚动页面同时滚动章节.
修改-动画和样式.
修改-滚动页面自动显示&隐藏返回顶部按钮.
可以直接引用.
文章增加目录列表(集成到header)
这版把目录按钮集成到了文章的#header
的按钮里面.
功能和v.1.0版本差不多一致(小改动), 同时打算把按钮统统放入#functionBtn
标签里面, 代码也统一放入 ArticleJs.js 里面.
修改-当滚动页面使
#functionBtn
按钮不可见时, 使其悬浮在顶部.
修改-文章目录增加顶部和底部跳转按钮.
- 图示:
Fancybox.js - 图片浏览器
Fancybox 官网
config.json 里引用 Fancybox 所需的 CSS 和 JS
注意末尾的标点符号.
我这里用的是5.0
版本, cdn 加速链接.
"script":"<script src='https://fastly.jsdelivr.net/gh/gjken/gjkdemo.github.io@main/static/ArticleJs.js'></script><script src='https://fastly.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.umd.js'></script>"
CSS写入到了👉文章自定义 js 代码
- 内容如下:
意思是页面加载完成再加载 CSS, 同时增加 fancybox 必要的绑定函数.
document.addEventListener('DOMContentLoaded', () => {
document.head.appendChild(
Object.assign(document.createElement('link'), {
rel: 'stylesheet',
href: 'https://fastly.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.css'
})
);
Fancybox.bind('[data-fancybox="gallery"]', {});
});
增加自定义匹配 - Gmeek-imgbox
修改 Gmeek 仓库的 Gmeek.py.
不知道怎么自定义 Gmeek 仓库的看这👉通过 Gmeek 仓库美化博客
打开Gmeek.py
文件, 定位字符串Gmeek-html
然后在下面增加代码:
# 手动插入外链图片
if '<code class="notranslate">Gmeek-imgbox' in post_body:
post_body = re.sub(r'<p>\s*<code class="notranslate">Gmeek-imgbox="([^"]+)"</code>\s*</p>', lambda match: f'<div class="ImgLazyLoad-circle"></div>\n<img data-fancybox="gallery" img-src="{match.group(1)}">', post_body, flags=re.DOTALL)
- 使用演示
在 markdown 插入图片:
`Gmeek-imgbox="https://i0.img2ipfs.com/ipfs/QmNiH2pdrA9Hb61EXgYbKtEssBAGemEjTQRBZbgutUCNx2"`
通过 Actions 转换后实际效果如下, html 的 img 标签会增加 fancybox 所需的data-fancybox="gallery"
属性.
图片懒加载
来源: Github
代码内容合并到👉文章自定义 js 代码
关键内容如下:
Javascript Code
// 懒加载图片
const ob = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const img = entry.target;
const imgContainer = img.previousElementSibling;
const handleError = (isError = false) => {
if (imgContainer && imgContainer.classList.contains('ImgLazyLoad')) {
imgContainer.style.display = 'none';
}
if (isError) {
const errorContainer = document.createElement('div');
errorContainer.classList.add('Imgerror-container');
errorContainer.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" style="height:60px;" class="Imgerror" viewBox="0 0 1024 1024"><path fill="#ff5b5b" d="M320 896h-77.833L515.92 622.253a21.333 21.333 0 0 0 3.16-26.133l-89.427-149.053 165.427-330.86A21.333 21.333 0 0 0 576 85.333H96a53.393 53.393 0 0 0-53.333 53.334v746.666A53.393 53.393 0 0 0 96 938.667h224A21.333 21.333 0 0 0 320 896zM96 128h445.48L386.253 438.46a21.333 21.333 0 0 0 .787 20.513L474 603.86l-69.333 69.333-89.62-89.653a53.333 53.333 0 0 0-75.427 0L85.333 737.827v-599.16A10.667 10.667 0 0 1 96 128zM85.333 885.333v-87.166l184.46-184.454a10.667 10.667 0 0 1 15.08 0l89.627 89.62L181.833 896H96a10.667 10.667 0 0 1-10.667-10.667zm192-458.666C336.147 426.667 384 378.813 384 320s-47.853-106.667-106.667-106.667S170.667 261.187 170.667 320s47.853 106.667 106.666 106.667zm0-170.667a64 64 0 1 1-64 64 64.073 64.073 0 0 1 64-64zM928 128H661.333a21.333 21.333 0 0 0-19.08 11.793l-.046.087c-.04.087-.087.173-.127.253L535.587 353.127a21.333 21.333 0 1 0 38.16 19.08l100.773-201.54H928a10.667 10.667 0 0 1 10.667 10.666V652.5L783.713 497.54a53.333 53.333 0 0 0-75.426 0L571.08 634.747a21.333 21.333 0 0 0-3.153 26.153l24.666 41.08-203.646 244.36a21.333 21.333 0 0 0 16.386 34.993H928A53.393 53.393 0 0 0 981.333 928V181.333A53.393 53.393 0 0 0 928 128zm0 810.667H450.88L635.053 717.66a21.333 21.333 0 0 0 1.907-24.667l-23.933-39.886L738.46 527.68a10.667 10.667 0 0 1 15.08 0l185.127 185.153V928A10.667 10.667 0 0 1 928 938.667z"/></svg><p class="Imgerror-message">图片错误</p>`;
img.parentNode.insertBefore(errorContainer, img.nextSibling);
img.style.display = 'none';
} else {
img.classList.remove('ImgLazyLoad');
img.classList.add('ImgLoaded');
}
};
img.src = img.getAttribute('img-src');
ob.unobserve(img);
img.onload = () => handleError(false);
img.onerror = () => handleError(true);
}
});
}, {
rootMargin: '0px 0px 500px 0px',
});
document.querySelectorAll('[img-src]').forEach(img => ob.observe(img));
加载动画 CSS, 我把它写到了primer.css
文件里面.
CSS Code
这个主要样式一定要写在
:root
选择器的前面!
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--ImgLazyLoad-circle-shadowColor:#27272745;
--ImgLazyLoad-circle-shadowColor2:#28dddf4a;
}
/* 图片懒加载占位css动画 */
.ImgLazyLoad-circle {
width: 40px;
height: 40px;
border-radius: 50%;
border: 6px #f3f3f3 solid;
border-top: 6px #8aefff solid;
transition: filter 0.5s ease, opacity 0.5s ease;
animation: ImgLazyLoadAni 1.2s infinite;
-webkit-animation: ImgLazyLoadAni 1.2s infinite;
box-shadow: 6px 6px 14px 0 var(--ImgLazyLoad-circle-shadowColor), -7px -7px 16px 0 var(--ImgLazyLoad-circle-shadowColor2);
}
@keyframes ImgLazyLoadAni {
0% {
transform: rotate(0)
}
100% {
transform: rotate(360deg)
}
}
@-webkit-keyframes ImgLazyLoadAni {
0% {
-webkit-transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg)
}
}
/* 图片懒加载文字提示样式 */
.Imgerror-message {
color: #ff5b5b;
font-size: 100%;
user-select: none;
}
/* 图片模糊渐显样式 */
[data-fancybox="gallery"]{
opacity: 0;
filter: blur(15px);
transition: opacity 0.5s ease, filter 0.5s ease;
}
.ImgLoaded {
opacity: 1;
filter: blur(0);
}
:root {
--ImgLazyLoad-circle-shadowColor:#0000;
--ImgLazyLoad-circle-shadowColor2:#ebfffe
}
GmeekVercount_uv.js - 网站增加访客计数器
Vercount Github
pv 修改成 uv 计数.
建议放入allHead
里全站添加 js.
"allHead":"<script src='https://cdn.jsdelivr.net/gh/gjken/gjkdemo.github.io@main/static/GmeekVercount_uv.min.js'></script>"
NumPagination.js - 主页添加数字分页条
来源 Github
未实际测试过.
通过 primer.css, 修改博客样式
primer.css, 这个文件用来控制网站的整体样式, 存放在我的 git 仓库, 使用 jsdelivr CDN 加速.
对应的选择器只张贴出关键 CSS 部分的修改, 不然代码太多了.
下面是修改笔记, 不一定实际使用.
已知bug: 给body增加
backdrop-filter: blur(30px);
样式时, 会出现页面异常, 待后续修复.
<html> 标签样式
[data-color-mode]
Note
优化 light & dark 主题下的背景色.
增加兼容性动画过渡.
修改前
[data-color-mode] {
color: var(--fgColor-default, var(--color-fg-default));
background-color: var(--bgColor-default, var(--color-canvas-default))
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--html-bgColor: #151c2f;/* 增加 */
}
:root {
--html-bgColor: #fff;/* 增加 */
}
[data-color-mode] {
color: var(--fgColor-default, var(--color-fg-default));
background-color: var(--html-bgColor);
-webkit-transition: background-color 0.5s ease;/* 增加 */
-moz-transition: background-color 0.5s ease;/* 增加 */
-o-transition: background-color 0.5s ease;/* 增加 */
transition: background-color 0.5s ease;/* 增加 */
}
<body> 标签样式
body
Note
优化 light & dark 主题下的背景色.
增加宽高过渡动画.
增加 1080px 屏幕宽度响应
增加高度 auto 过渡动画, 这是一个较新的属性, Chrome 129+ 才支持.
修改前
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
font-size: var(--body-font-size, 14px);
line-height: 1.5;
color: var(--fgColor-default, var(--color-fg-default));
background-color: var(--bgColor-default, var(--color-canvas-default))
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--body-bgColor: #3b3b3bd9;/* 增加 */
--body-shadow-color: #52afff3d;/* 增加 */
}
:root {
--body-bgColor: #ffffffde;/* 增加 */
--body-shadow-color: #50a8e726;/* 增加 */
interpolate-size: allow-keywords;/* 增加 */
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
font-size: var(--body-font-size, 14px);
line-height: 1.5;
color: var(--fgColor-default, var(--color-fg-default));
background: var(--body-bgColor);
box-shadow: 0 0 100px var(--body-shadow-color);/* 增加 */
border-radius: 10px;/* 增加 */
height: auto;
}
/* 增加 */
@media (min-width: 1080px) {
body {
max-width: 1000px !important;
}
}
博客滚动条样式
::-webkit-scrollbar
Note
直接增加下面代码.
CSS Code
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background: #97d3ffa1;
}
::-webkit-scrollbar-thumb:hover {
background: #81b5daa1;
}
/* Firefox */
html {
scrollbar-color: #97d3ffa1 transparent;
scrollbar-width: thin;
}
#header 样式
#header
Note
修改顶部为 flex 居中布局, 更加美观.
修改头像 hover 样式.
CSS Code
/* 优化header样式 */
#header {
flex-direction: column !important;
align-items: center !important;
gap: 10px;
padding-bottom: 0 !important;
margin-bottom: 24px !important
}
/* 优化头像样式 */
#header h1 {
display: flex;
flex-direction: column !important;
align-items: center !important;
gap: 15px
}
#header h1 a {
margin: unset !important;
}
.avatar:hover {
transform: scale(1.5) rotate(720deg) !important;
box-shadow: 0 0 10px rgb(45 250 255 / 74%);
}
#header 图标样式
.btn-invisible:hover, .btn-invisible.zeroclipboard-is-hover
Note
图标增加阴影.
svg 暗黑模式下颜色.
修改图标 hover 样式.
修改前
.btn-invisible {
color: var(--fgColor-accent, var(--color-accent-fg));
background-color: rgba(0, 0, 0, 0);
border: 0;
border-radius: 6px;
box-shadow: none
}
.btn-invisible:active,
.btn-invisible.selected,
.btn-invisible[aria-selected=true],
.btn-invisible.zeroclipboard-is-active {
color: var(--fgColor-accent, var(--color-accent-fg));
background: none;
border-color: var(--button-default-borderColor-active, var(--color-btn-active-border));
outline: 2px solid var(--focus-outlineColor, var(--color-accent-fg));
outline-offset: -2px;
box-shadow: none
}
.btn-invisible:active .btn-invisible.zeroclipboard-is-active {
background-color: var(--button-default-bgColor-selected, var(--color-btn-selected-bg))
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
/* 增加 */
--SideNav-bgColor: #00f0ff;
--title-right-svgHovercolor:#ff7150;
--header-btn-shadowColor:#00000045;
--header-btn-shadowColor2:#9bdfff14;
}
:root {
/* 增加 */
--title-right-svgColor:#000;
--title-right-svgHovercolor: #ff7804;
--header-btn-shadowColor:#fbfbfb26;
--header-btn-shadowColor2:#5f5f5f26;
}
.btn-invisible {
color: var(--fgColor-accent, var(--color-accent-fg));
background-color: rgba(0, 0, 0, 0);
border: 0;
border-radius: 6px;
box-shadow: 6px 6px 14px 0 var(--header-btn-shadowColor), -7px -7px 16px 0 var(--header-btn-shadowColor2);
transition: box-shadow .4s ease-in-out,filter .4s ease-in-out;
}
/* 图标颜色 */
.btn-invisible svg path{
fill: var(--title-right-svgColor);
}
/* 图标hover颜色 */
.btn-invisible:hover svg path,
.btn-invisible.zeroclipboard-is-hover svg path{
fill: var(--title-right-svgHovercolor);
}
.btn-invisible:active,
.btn-invisible.selected,
.btn-invisible[aria-selected=true],
.btn-invisible.zeroclipboard-is-active {
box-shadow: 6px 6px 14px 0 var(--header-btn-shadowColor) inset, -7px -7px 12px 0 var(--header-btn-shadowColor2) inset;
}
.btn-invisible:active .btn-invisible.zeroclipboard-is-active {
box-shadow: 6px 6px 14px 0 var(--header-btn-shadowColor) inset, -7px -7px 12px 0 var(--header-btn-shadowColor2) inset;
}
修改文章主页, 文章的列表样式
Note
还未想好要怎么改, 先占位.
修改前
.border {
border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important
}
修改后
.border {
border: var(--borderWidth-thin, 1px) solid var(--borderColor-default, var(--color-border-default)) !important
}
文章 <blockquote> 标签样式
.markdown-body blockquote
Note
修改文字颜色, 适配 light & dark 主题.
修改前
.markdown-body blockquote {
padding: 0 1em;
color: var(--fgColor-muted, var(--color-fg-muted));
border-left: .25em solid var(--borderColor-default, var(--color-border-default))
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
/* 增加 */
--markdown-blockquote-color: #ffffff8c;
--markdown-blockquote-borderLeft-color: #bbbbbb8c;
}
:root {
/* 增加 */
--markdown-blockquote-color: #656d76;
--markdown-blockquote-borderLeft-color: #d0d7de;
}
.markdown-body blockquote {
padding: 0 1em;
color: var(--markdown-blockquote-color);
border-left: .25em solid var(--markdown-blockquote-borderLeft-color)
}
文章文字通用样式
.markdown-body p, .markdown-body blockquote, .markdown-body ul, .markdown-body ol, .markdown-body dl, .markdown-body table, .markdown-body pre, .markdown-body details
Note
修改行高为 1.75
修改前
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre,
.markdown-body details {
margin-top: 0;
margin-bottom: 16px;
}
修改后
.markdown-body p,
.markdown-body blockquote,
.markdown-body ul,
.markdown-body ol,
.markdown-body dl,
.markdown-body table,
.markdown-body pre,
.markdown-body details {
margin-top: 0;
margin-bottom: 16px;
line-height: 1.75;/* 增加 */
}
文章标题通用样式
.markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6
Note
删除左右 padding.
修改前
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
padding: .22em;
margin-top: 24px;
margin-bottom: 16px;
font-weight: var(--base-text-weight-semibold, 600);
line-height: 1.25
}
修改后
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
padding: .22em 0;
margin-bottom: 16px;
font-weight: var(--base-text-weight-semibold, 600);
line-height: 1.25
}
文章 <h1> 标签样式
.markdown-body h1
Note
修改字体大小1.65em.
删除下 padding, 增加左 padding .22em.
增加 margin-top.
优化 light & dark 主题下的背景色.
修改前
.markdown-body h1 {
padding-bottom: .3em;
font-size: 2em;
border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted))
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--markdown-h1-bgColor: #7dc2ff7a;/* 增加 */
}
:root {
--markdown-h1-bgColor: #c8e5ff7a;/* 增加 */
}
.markdown-body h1 {
padding-left: .22em;
background: var(--markdown-h1-bgColor);/* 增加 */
border-radius: 6px;/* 增加 */
font-size: 1.65em;
border-left: .25em solid #71c4ef63;/* 增加 */
padding-left: .25em;/* 增加 */
margin-top: 42px;/* 增加 */
}
文章 <h2> 标签样式
.markdown-body h2
Note
删除 padding-bottom.
增加下划线动画.
增加阴影样式.
修改前
.markdown-body h2 {
padding-bottom: .3em;
font-size: 1.5em;
border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted))
}
修改后
.markdown-body h2 {
padding-bottom: .3em;
font-size: 1.5em;
box-shadow: rgb(41, 150, 186) 0px 9px 18px -15px;/* 增加 */
display: inline-block;/* 增加 */
border-radius: 6px;/* 增加 */
}
文章 <img> 标签样式
.markdown-body img
Note
优化 light & dark 主题下的背景色.
增加 hover 动画.
img 标签增加display: block;
, 防止 Actions 之后显示错误.
修改前
.markdown-body img {
max-width: 100%;
box-sizing: content-box;
background-color: var(--bgColor-default, var(--color-canvas-default))
}
修改后
/* 增加 */
.markdown-body p {
position: relative;
overflow: visible;
clip-path: inset(0);
-webkit-clip-path: inset(0);
}
.markdown-body img {
display: block;
max-width: 100%;
box-sizing: content-box;
/* 增加 */
transition: transform 0.3s ease, -webkit-transform 0.3s ease, clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
}
/* 增加 */
.markdown-body img:hover {
transform: scale(1.01);
-webkit-transform: scale(1.01);
clip-path: inset(-4%);
-webkit-clip-path: inset(-4%);
cursor: zoom-in;
}
文章 <code> 标签样式
.markdown-body code, .markdown-body tt
Note
优化 light & dark 主题下的背景色.
修改前
.markdown-body code,
.markdown-body tt {
background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted));
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--markdown-code-bgColor: #0198b5a1;/* 增加 */
}
:root {
--markdown-code-bgColor: #81818138;/* 增加 */
}
.markdown-body code,
.markdown-body tt {
background-color: var(--markdown-code-bgColor);
}
文章代码块样式
.markdown-body .highlight pre, .markdown-body pre
Note
优化 light & dark 主题下的背景色.
增加内阴影.
修改前
.markdown-body .highlight pre,.markdown-body pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
color: var(--fgColor-default, var(--color-fg-default));
background-color: var(--bgColor-muted, var(--color-canvas-subtle));
border-radius: 6px
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--markdown-pre-bgColor: #27282d;/* 增加 */
--markdown-pre-shadowColor: #00000026;/* 增加 */
}
:root {
--markdown-pre-bgColor: #f6f8fa;/* 增加 */
--markdown-pre-shadowColor: #5f5f5f26;/* 增加 */
}
.markdown-body .highlight pre, .markdown-body pre {
padding: 16px;
overflow: auto;
font-size: 85%;
line-height: 1.45;
color: var(--fgColor-default, var(--color-fg-default));
border-radius: 6px;
background-color: var(--markdown-pre-bgColor);/* 增加 */
box-shadow: 4px 5px 14px 0 var(--markdown-pre-shadowColor) inset;/* 增加 */
}
文章 diff 代码块样式
Note
因默认的效果可以双击复制到+和-号, 现通过 CSS 控制使其无法被选中复制.
直接增加下面代码.
CSS Code
.pl-mi1 {
user-select: text;
}
.pl-mi1>span {
user-select: none;
}
.pl-md {
user-select: text;
}
.pl-md>span {
user-select: none;
}
- 效果图:
文章一键复制代码按钮样式
Note
给按钮增加 hover 动画, 使其显示&隐藏一键复制按钮.
直接增加下面代码.
CSS Code
/* 一键复制hover出入动画 */
.clipboard-container {
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s ease, visibility 0s 0.3s;
-webkit-transition: opacity 0.3s ease, visibility 0s 0.3s
}
.snippet-clipboard-content:hover .clipboard-container {
opacity: 1;
visibility: visible;
pointer-events: auto;
transition: opacity 0.3s ease, visibility 0s 0s;
-webkit-transition: opacity 0.3s ease, visibility 0s 0s
}
文章 <a> 标签样式
a
Note
这个选择器经过查找发现有2行重复了, 总之合并成最靠下的那一行.
如果要改白天模式下超链的颜色, 需要定位36行的选择器然后找到--color-accent-fg: #0969da
优化 light & dark 主题下的颜色.
修改下划线动画.
修改前
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--color-accent-fg: #2f81f7;
}
/* 这条在12300行左右出现 */
a {
background-color: rgba(0, 0, 0, 0)
}
/* 这条在12500行左右出现 */
a {
color: var(--fgColor-accent, var(--color-accent-fg));
text-decoration: none
}
修改后
[data-color-mode=light][data-light-theme=dark],
[data-color-mode=light][data-light-theme=dark]::selection,
[data-color-mode=dark][data-dark-theme=dark],
[data-color-mode=dark][data-dark-theme=dark]::selection {
--color-accent-fg: #20d4ff;
}
/*
合并靠下的那一行, 修改为下面内容:
*/
a {
background: linear-gradient(#90d1ff, #90d1ff) no-repeat left bottom;
background-size: 0 2px;
transition: all 0.25s ease;
-webkit-transition: all 0.25s ease;
color: var(--fgColor-accent, var(--color-accent-fg));
text-decoration: none
}
/* 增加 */
.markdown-body a:hover {
background-size: 100% 2px;
}
文章 <td> 最后的子元素样式
.markdown-body table td>:last-child
Note
修改下标基线对齐位置.
修改前
.markdown-body table td>:last-child {
margin-bottom: 0
}
修改后
.markdown-body table td>:last-child {
margin-bottom: 0;
vertical-align: sub
}
- 效果图:
通过 Gmeek 仓库美化博客
为什么这样做? 自娱自乐.~~
Fork Gmeek 仓库
仓库地址👉 https://github.com/Meekdai/Gmeek
fork 之后, 转到搭建博客的 github 源码,
打开.github/workflows/Gmeek.yml
文件, 修改构建博客仓库的地址为你自己的仓库地址
打开config.json
文件, 把GMEEK_VERSION
的修改值为👉main
Note
如果值是last
的话, Actions 会失败, 因为默认值last
是靠模板仓库的 tag 来构建的, 改成 main 就不会构建失败.
创建新的 tag 也可以, 但是挺麻烦.
修改 Actions 定时任务时间
原本为每天 UTC 时间 16 点定时 Actions.
- cron: "0 16 * * *"
改成每周 UTC 时间 18 点定时 Actions.
- cron: "0 18 * * 0"
修改网站下方的文字
打开Gmeek.py
下图文字直接修改即可, 不同语言的按需修改.
修改默认 primer.css 链接
打开Gmeek.py
这里我直接写改成我存放的链接, 并使用 tag 控制版本.
修改模板文件记录
base.html 文件
Important
base 这个模板文件里增加的代码可以应用到所有页面, 优先级很高.
- 增加所需的样式.
文章头部背景色.
打字效果动画.
动画(已引用的地方:#header
打字机光标,body``#content``functionBtn``.tagTitle``.title-left a``.subnav-search
向上渐显动画).
分离图标的#functionBtn
样式.
CSS Code
:root{--functionBtnFlex-bgColor:#ffffff61;}
[data-color-mode=light][data-light-theme=dark],[data-color-mode=light][data-light-theme=dark]::selection,[data-color-mode=dark][data-dark-theme=dark],[data-color-mode=dark][data-dark-theme=dark]::selection{--functionBtnFlex-bgColor:#ffffff00;}
@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}
@keyframes blink{50%{opacity:0}100%{opacity:1}}@-webkit-keyframes blink{50%{opacity:0}100%{opacity:1}}
@keyframes grow {
0% {opacity: 0.85;transform: scale(0.5);}
100% {opacity: 1;transform: translate(1);}
}
@-webkit-keyframes grow {
0% {opacity: 0.85;-webkit-transform: scale(0.5);}
100% {opacity: 1;-webkit-transform: translate(1);}
}
@keyframes slide-fade-in {
0% {opacity: 0;transform: translate3d(0, 20px, 0);}
100% {opacity: 1;transform: translate(0, 0, 0);}
}
@-webkit-keyframes slide-fade-in {
0% {opacity: 0;-webkit-transform: translate3d(0, 20px, 0);}
100% {opacity: 1;-webkit-transform: translate(0, 0, 0);}
}
#functionBtn{display:flex;justify-content:center;margin:20px 0;gap:20px;transition: transform 0.3s ease-in-out;}
#functionBtn a{padding:14px 16px;}
#functionBtn.Btn-flex{position:fixed;margin:0;padding:20px 0;top:-100px;left:0;width:100%;min-width:500px;background-color:var(--functionBtnFlex-bgColor);backdrop-filter:blur(30px);box-shadow:#00000078 0 9px 18px -15px;z-index:100;}
body,#content,#functionBtn,.tagTitle,.title-left a,.subnav-search{-webkit-animation:slide-fade-in 0.8s ease;animation:slide-fade-in 0.8s ease}
- 定位
#header
, 修改样式.
去除下划线, 优化布局.
+#header .homepage-header{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:24px;}
👆
-#header{display:flex;padding-bottom:8px;border-bottom: 1px solid var(--borderColor-muted, var(--color-border-muted));margin-bottom: 16px;}
post.html 文件
Important
post 这个模板文件里增加的代码可以应用到所有文章页面.
- 定位
.postTitle
, 修改样式
修改标题文字居中显示.
after 是光标, blink 是光标动画.
+.postTitle{margin:0 auto;font-size:40px;font-weight:bold;}
+.postTitle::after{content:'|';animation:blink 1s infinite;font-family:fantasy;font-weight:normal;vertical-align:text-top;}
+.no-blink::after{animation:none;}
👆
-.postTitle{margin: auto 0;font-size:40px;font-weight:bold;}
- 定位样式
#functionBtn .circle
, 删除margin-right:8px;
+#functionBtn .circle{padding: 14px 16px;}
👆
-#functionBtn .circle{padding: 14px 16px;margin-right:8px;}
- body响应
定位@media (max-width:600px) {
, 给 body 增加最小宽度500px: min-width:500px;
- 分离 header 文字以及图标
需要把
.title-right
这个类名全部重命名为#functionBtn
增加搜索页按钮.
增加文章目录按钮.
修改前
{% block header %}
<h1 class="postTitle">{{ blogBase['postTitle'] }}</h1>
<div class="title-right">
<a href="{{ blogBase['homeUrl'] }}" id="buttonHome" class="btn btn-invisible circle" title="{{ i18n['home'] }}">
<svg class="octicon" width="16" height="16">
<path id="pathHome" fill-rule="evenodd"></path>
</svg>
</a>
{% if blogBase['showPostSource']==1 %}
<a href="{{ blogBase['postSourceUrl'] }}" target="_blank" class="btn btn-invisible circle" title="Issue">
<svg class="octicon" width="16" height="16">
<path id="pathIssue" fill-rule="evenodd"></path>
</svg>
</a>
{% endif %}
<a class="btn btn-invisible circle" onclick="modeSwitch();" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd"></path>
</svg>
</a>
</div>
{% endblock %}
修改后
{% block header %}
<h1 class="postTitle">{{ blogBase['postTitle'] }}</h1>
{% endblock %}
{% block functionBtn %}
<a href="{{ blogBase['homeUrl'] }}" id="buttonHome" class="btn btn-invisible circle" title="{{ i18n['home'] }}">
<svg class="octicon" width="16" height="16"><path id="pathHome" fill-rule="evenodd"></path></svg>
</a>
{% if blogBase['showPostSource']==1 %}
<a href="{{ blogBase['postSourceUrl'] }}" target="_blank" class="btn btn-invisible circle" title="Issue">
<svg class="octicon" width="16" height="16"><path id="pathIssue" fill-rule="evenodd"></path></svg>
</a>
{% endif %}
<a class="btn btn-invisible circle" onclick="modeSwitch();" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" ><path id="themeSwitch" fill-rule="evenodd"></path></svg>
</a>
<a href="{{ blogBase['homeUrl'] }}/tag.html" id="buttonSearch" class="btn btn-invisible circle" title="{{ i18n['Search'] }}">
<svg class="octicon" width="16" height="16" >
<path id="pathSearch" fill-rule="evenodd"></path>
</svg>
</a>
<a class="ArticleTOC btn btn-invisible circle" title="文章目录">
<svg class="octicon" width="16" height="16"><path></path></svg>
</a>
{% endblock %}
定位document.getElementById("pathHome").setAttribute("d",IconList["home"]);
, 在下面一行增加js.
暂时还不知道如何通过变量增加 path 的路径信息, 只能直接模仿原先的增加方式上, 直接写路径.
document.getElementById("ArticleTOC").setAttribute("d","M1 2.75A.75.75 0 0 1 1.75 2h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 2.75Zm0 5A.75.75 0 0 1 1.75 7h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 7.75ZM1.75 12h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5Z");
document.getElementById("pathSearch").setAttribute("d","M15.7 13.3l-3.81-3.83A5.93 5.93 0 0 0 13 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 0 0 0-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z");
- 添加自定义 JS 代码.
添加打字效果.
添加滚动切换显示顶部按钮导航.
定位<script>
标签, 在里面增加 JS 代码:
Note
document.addEventListener("DOMContentLoaded", () => {
这个监听不止可写当前功能, 还可写其它功能的代码进去.
实际应用场景我把这块的代码都压缩合并了.
JavaScript
// 获取 .postTitle 元素的文本内容存储后清空
const postTitle = document.querySelector('.postTitle');
const textContent = postTitle.textContent;
postTitle.textContent = '';
// 定义逐字显示文本的函数, 末尾的数值代表每次输入字符的速度(毫秒)
let idx = 0;
const writeTimer = setInterval(() => {
postTitle.textContent = textContent.slice(0, idx++);
if (idx > textContent.length) {
clearInterval(writeTimer);
postTitle.classList.remove('no-blink');
}
}, 80);
postTitle.classList.add('no-blink');
document.addEventListener('DOMContentLoaded', () => {
// 创建检查按钮, 插入到指定id #functionBtn 的后面
const checkBtn = document.createElement('div');
checkBtn.id = 'checkBtn';
const functionBtn = document.getElementById('functionBtn');
functionBtn.insertAdjacentElement('afterend', checkBtn);
// 用 IntersectionObserver 观察 checkBtn 这个div的可见性
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
const isIntersecting = entry.isIntersecting;
functionBtn.classList.toggle('Btn-flex', !isIntersecting);
functionBtn.style.top = isIntersecting ? '0' : '-100px';
});
}, { rootMargin: '300px 0px 0px 0px', threshold: 0 });
observer.observe(checkBtn);
let startY = 0;
// 通用滚动处理函数
const handleScroll = deltaY => {
functionBtn.style.top = deltaY > 0 ? '-100px' : '0';
};
// 监听触摸和滚轮事件
document.addEventListener('touchstart', e => startY = e.touches[0].clientY);
document.addEventListener('touchmove', e => handleScroll(e.touches[0].clientY - startY));
document.addEventListener('wheel', e => handleScroll(e.deltaY));
});
plist.html 文件
Important
plist 这个模板文件里增加的代码可以应用到博客首页.
- 增加样式
.title-left{display:flex;flex-direction:column;align-items:center;gap:20px;}
-
定位样式
.title-left
, 直接删除相关的所有样式 -
定位
.avatar:hover
, 修改样式
.avatar:hover{transform:scale(1.5) rotate(720deg);box-shadow:0 0 10px #2dfaffbd;}
- 分离#header的文字以及图标
修改前
{% block header %}
<div class="title-left">
<img src="{{ blogBase['avatarUrl'] }}" class="avatar circle" id="avatarImg" alt="avatar">
{%- if blogBase['displayTitle']=='Meekdai' -%}
<a class="blogTitle" href="https://meekdai.com"><span style="font-size:0;">M</span>eekdai</a>
{% else -%}
<a class="blogTitle">{{ blogBase['displayTitle'] }}</a>
{%- endif -%}
</div>
<div class="title-right">
<a href="{{ blogBase['homeUrl'] }}/tag.html" id="buttonSearch" class="btn btn-invisible circle" title="{{ i18n['Search'] }}">
<svg class="octicon" width="16" height="16" >
<path id="pathSearch" fill-rule="evenodd"></path>
</svg>
</a>
{% for key, value in blogBase['exlink'].items() -%}
<a href="{{ value }}" class="btn btn-invisible circle" title="{{ key }}" target="_blank">
<svg class="octicon" width="16" height="16" >
<path id="{{ key }}" fill-rule="evenodd"></path>
</svg>
</a>
{%- endfor %}
{% for num in blogBase['singeListJson'] -%}
<a href="{{ blogBase['homeUrl'] }}/{{ blogBase['singeListJson'][num]['labels'][0] }}.html" class="btn btn-invisible circle" title="{{ blogBase['singeListJson'][num]['postTitle'] }}">
<svg class="octicon" width="16" height="16" >
<path id="{{ blogBase['singeListJson'][num]['postTitle'] }}" fill-rule="evenodd"></path>
</svg>
</a>
{%- endfor %}
<a href="{{ blogBase['homeUrl'] }}/rss.xml" target="_blank" id="buttonRSS" class="btn btn-invisible circle" title="RSS">
<svg class="octicon" width="16" height="16" >
<path id="pathRSS" fill-rule="evenodd"></path>
</svg>
</a>
<a class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd"></path>
</svg>
</a>
</div>
{% endblock %}
修改后
{% block header %}
<div class="title-left">
<img src="{{ blogBase['avatarUrl'] }}" class="avatar circle" id="avatarImg" alt="avatar">
{%- if blogBase['displayTitle']=='Meekdai' -%}
<a class="blogTitle" href="https://meekdai.com"><span style="font-size:0;">M</span>eekdai</a>
{% else -%}
<a class="blogTitle">{{ blogBase['displayTitle'] }}</a>
{%- endif -%}
</div>
{% endblock %}
{% block functionBtn %}
<a href="{{ blogBase['homeUrl'] }}/tag.html" id="buttonSearch" class="btn btn-invisible circle" title="{{ i18n['Search'] }}">
<svg class="octicon" width="16" height="16" >
<path id="pathSearch" fill-rule="evenodd"></path>
</svg>
</a>
{% for key, value in blogBase['exlink'].items() -%}
<a href="{{ value }}" class="btn btn-invisible circle" title="{{ key }}" target="_blank">
<svg class="octicon" width="16" height="16" >
<path id="{{ key }}" fill-rule="evenodd"></path>
</svg>
</a>
{%- endfor %}
{% for num in blogBase['singeListJson'] -%}
<a href="{{ blogBase['homeUrl'] }}/{{ blogBase['singeListJson'][num]['labels'][0] }}.html" class="btn btn-invisible circle" title="{{ blogBase['singeListJson'][num]['postTitle'] }}">
<svg class="octicon" width="16" height="16" >
<path id="{{ blogBase['singeListJson'][num]['postTitle'] }}" fill-rule="evenodd"></path>
</svg>
</a>
{%- endfor %}
<a href="{{ blogBase['homeUrl'] }}/rss.xml" target="_blank" id="buttonRSS" class="btn btn-invisible circle" title="RSS">
<svg class="octicon" width="16" height="16" >
<path id="pathRSS" fill-rule="evenodd"></path>
</svg>
</a>
<a class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd"></path>
</svg>
</a>
{% endblock %}
tag.html 文件
Important
tag 这个模板文件里增加的代码可以应用到搜索页.
- 打开
tag.html
修改样式, 用了 Diff 代码块, 看着改吧.
+.title-right{display:flex;align-items:center;flex-direction:column;}
+.title-right .circle{padding:14px 16px;}
👆
-.title-right{display:flex;margin:auto 0 0 auto;}
-.title-right .circle{padding: 14px 16px;margin-right:8px;}
- 分离搜索框以及图标.
修改前
{% block header %}
<span class="tagTitle"><span>Loading</span><span class="AnimatedEllipsis"></span></span>
<div class="title-right">
<div class="subnav-search">
<input type="search" class="form-control subnav-search-input float-left" aria-label="Search site" value="" style="height:32px;">
<button class="btn float-left" type="submit" onclick="javascript:searchShow()">{{ i18n['Search'] }}</button>
<svg class="subnav-search-icon octicon octicon-search" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true">
<path id="searchSVG" fill-rule="evenodd"></path>
</svg>
</div>
<a href="{{ blogBase['homeUrl'] }}" id="buttonHome" class="btn btn-invisible circle" title="{{ i18n['home'] }}">
<svg class="octicon" width="16" height="16">
<path id="pathHome" fill-rule="evenodd"></path>
</svg>
</a>
<a class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd"></path>
</svg>
</a>
</div>
{% endblock %}
修改后
{% block header %}
<span class="tagTitle"><span>Loading</span><span class="AnimatedEllipsis"></span></span>
<div class="subnav-search">
<input type="search" class="form-control subnav-search-input float-left" aria-label="Search site" value="" style="height:32px;">
<button class="btn float-left" type="submit" onclick="javascript:searchShow()">{{ i18n['Search'] }}</button>
<svg class="subnav-search-icon octicon octicon-search" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true">
<path id="searchSVG" fill-rule="evenodd"></path>
</svg>
</div>
{% endblock %}
{% block functionBtn %}
<a href="{{ blogBase['homeUrl'] }}" id="buttonHome" class="btn btn-invisible circle" title="{{ i18n['home'] }}">
<svg class="octicon" width="16" height="16">
<path id="pathHome" fill-rule="evenodd"></path>
</svg>
</a>
<a class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}" {%- if blogBase['themeMode']=='fix' -%}style="display:none;"{%- endif -%}>
<svg class="octicon" width="16" height="16" >
<path id="themeSwitch" fill-rule="evenodd"></path>
</svg>
</a>
{% endblock %}
修改搜索框样式
-
定位
.subnav-search
类名. 直接删除这个样式 -
定位
.subnav-search-input
类名, 修改以下内容
+.subnav-search-input{width:160px;}
+.subnav-search button{padding:5px 8px;}
👆
-.subnav-search-input{width:160px;border-top-right-radius:0px;border-bottom-right-radius:0px;}
-.subnav-search button{padding:5px 8px;border-top-left-radius:0px;border-bottom-left-radius:0px;}
- 打开
primer.css
, 修改样式
定位.subnav-search {
, 删除了margin.
+.subnav-search {position: relative;s}
👆
-.subnav-search {position: relative;margin-left: 12px}
修改[警报强调信息]样式
- 增加圆角
打开Gmeek.py
定位代码<style>.markdown-alert{
, 给它增加圆角6px.
border-radius:6px;
- 优化行高显示
定位line-height:1;
, 直接删除这个属性.
- 效果图:
优化任务列表样式
具体问题看#202
打开Gmeek.py
, 定位postBase=self.blogBase.copy()
, 在它的下面增加如下代码:
# 优化任务列表样式
if '<ul class="contains-task-list">' in post_body:
issue["style"]=issue["style"]+'<style>.contains-task-list{padding-left:0.9em !important;list-style:none}</style>'
页面底部文字增加图标动画
爱心图标动画.
打开footer.html
在<span id="runday">
前面插入下面一行 SVG 图标.
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" style="margin-right: 4px;height:18px;vertical-align: bottom;fill: #ff5a5a;"class="animate_heartBeatScale"><path d="M1017.152 426.592a263.296 263.296 0 0 0-502.304-133.92 263.328 263.328 0 0 0-502.304 133.92s5.152 259.264 505.536 520.096c500.32-260.832 499.072-520.096 499.072-520.096zM282.016 194.976a43.2 43.2 0 1 1 .096 86.4 43.2 43.2 0 0 1-.096-86.4zm-135.04 323.232a45.12 45.12 0 0 1-55.488-31.328 289.472 289.472 0 0 1-10.816-66.592C76.64 313.824 142.24 261.472 145.504 258.88a45.024 45.024 0 0 1 63.2 8.032c15.168 19.488 11.744 47.36-7.328 62.72-2.336 1.952-30.784 27.52-30.592 82.24.096 14.752 2.208 31.616 7.488 50.784a45.12 45.12 0 0 1-31.296 55.552z"/></svg>
打开primer.css
, 直接增加动画 CSS 代码.
CSS Code
@keyframes heartBeatScale {
0% {
-webkit-transform: scale(1);
transform: scale(1)
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
28% {
-webkit-transform: scale(1);
transform: scale(1)
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3)
}
70% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes heartBeatColor {
0%, 28%, 70%, 100% {
fill: #ff5a5a; /* 初始颜色 */
}
14%, 42% {
fill: red; /* 放大时颜色变化 */
}
}
.animate_heartBeatScale {
animation: heartBeatScale 1.3s infinite ease-in-out, heartBeatColor 1.3s infinite ease-in-out;
-webkit-animation: heartBeatScale 1.3s infinite ease-in-out, heartBeatColor 1.3s infinite ease-in-out;
}
转到页脚查看实际效果👉 点我
Gmeek-html
Github 由于安全考虑, 是不允许使用 iframe 等标签的, 而且在 issues 插入的图片也会自动转换为 Github 的地址, 为了文章的多样性, 在 Gmeek 的 v2.19 版本中添加了支持 html 标签的功能.
Gmeek 的默认功能, 可使用这个匹配规则转换不同的 html 效果, 详看 👉 Gmeek进阶
Important
如果在文章中含有代码块标签并且内容为 Gmeek-html, Action 那边会进行转换导致显示错误, 详情看#201
gmeek-html
换成小写就不会被匹配到.
优化 Gmeek-html, 标签转换匹配
打开Gmeek.py
, 定位字符串gmeek-html
替换成下面的代码:
# 给原本的Gmeek-html增加小括号判断:<>, 缩小匹配范围
if '<code class="notranslate">Gmeek-html' in post_body:
post_body = re.sub(r'<code class="notranslate">Gmeek-html(<.*?>)</code>', lambda match: html.unescape(match.group(1)), post_body, flags=re.DOTALL)
原先匹配的内容为:<code class="notranslate">Gmeek-html(.*?)</code>
,
这种情况下, 如果在 html 中含有行内代码块标签并且内容含有 Gmeek-html, 会导致转换文章内容时出现显示错误,
更改后缩小了匹配范围, 可直接用行内代码块👉Gmeek-html
让其在文章内正常显示.
增加图片转换, 并适配图片懒加载
打开Gmeek.py
, 定位字符串Gmeek-html
在附近任意行增加代码:
# 默认情况插入图片情况下的匹配规则<p> -> <a> -><img>
if '<p><a target="_blank" rel=' in post_body:
post_body = re.sub(r'<p>\s*<a[^>]*?href="([^"]+)"[^>]*?><img[^>]*?src="\1"[^>]*?></a>\s*</p>', lambda match: f'<div class="ImgLazyLoad-circle"></div>\n<img data-fancybox="gallery" img-src="{match.group(1)}">', post_body, flags=re.DOTALL)
# 通用插入图片情况下的匹配规则<a> -><img>
if '<a target="_blank" rel=' in post_body:
post_body = re.sub(r'<a[^>]*?href="([^"]+)"[^>]*?><img[^>]*?src="\1"[^>]*?></a>',lambda match: f'<div class="ImgLazyLoad-circle"></div>\n<img data-fancybox="gallery" img-src="{match.group(1)}">', post_body, flags=re.DOTALL)
- 使用演示
在 GitHub markdown 里上传图片, 粘贴&拖拽都行,
然后通过 Actions 转换后实际效果如下, html 里面 img 标签会增加 fancybox 所需的data-fancybox="gallery"
属性.
这样优化后可以在 Github issue 的 Preview 里面直接预览图片, 同时还能防备图床问题导致的图片丢失(Github, 稳!)
唯一缺点就是当 issues 删除后, 图片也会跟着消失, 无法再被外部引用, 所以删除仓库以及 issues 的时候一定要确保图片先备份哦~
添加 Gmeek-spoilertxt - 文字防剧透模糊效果
默认模糊效果, 反复点击可反复显示或隐藏.
打开 Gmeek.py
- 增加匹配内容:
if '<code class="notranslate">Gmeek-spoilertxt' in post_body:
post_body = re.sub(r'<code class="notranslate">Gmeek-spoilertxt="([^"]+)"</code>', lambda match: f'<span class="spoilerText">{match.group(1)}</span>', post_body, flags=re.DOTALL)
- 实际转化后的标签如下:
<p>测试剧透 <span class="spoilerText">剧透内容</span></p>
打开 post.html
- 增加 CSS 样式:
.spoilerText{filter:blur(5px);-webkit-filter:blur(5px);cursor:pointer;transition:filter .3s ease}
.spoilerText.clear{filter: none;}
- 定位
<script>
标签, 在里面增加 JS 代码:
Note
document.addEventListener('DOMContentLoaded', () => {
这个监听可以写其它功能的代码进去, 不止剧透效果.
Javascript Code
document.addEventListener('DOMContentLoaded', () => {
const spoilers = document.querySelectorAll(".spoilerText");
spoilers.length && spoilers.forEach(el => el.onclick = () => el.classList.toggle("clear"));
});
- markdown 输入:
测试剧透👉`Gmeek-spoilertxt="666666"`.
- 实际展示:
测试剧透👉666666.
添加自定义单篇文章代码
<span id="busuanzi">
:heart:感谢第<span></span>小伙伴的<span></span>次访问关于页面.
</span>
<!-- ##{"script":"<script>document.getElementById('user-content-busuanzi').id='busuanzi_container_site_uv';busuanzi=document.getElementById('busuanzi_container_site_uv');busuanzi.style.display='none';busuanzi.childNodes[1].id='busuanzi_value_site_uv';busuanzi.childNodes[3].id='busuanzi_value_site_pv';</script><script async src='//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js'></script>","style":"<style>#busuanzi_value_site_uv{color:red}#busuanzi_value_site_pv{color:red}</style>"}## -->
自动展开评论区
打开 post.html,
-
定位
onclick="openComments()"
, 在 html 结构里删除这个点击绑定. -
定位
function openComments(){
这个函数, 在函数结束外边尾行增加openComments();
icon 图标
写着备用.
- 打开 Gmeek.py
定位IconBase={
在这个 json 格式里面增加图标路径数值.
"ThreeBars":"M1 2.75A.75.75 0 0 1 1.75 2h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 2.75Zm0 5A.75.75 0 0 1 1.75 7h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 7.75ZM1.75 12h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5Z",
"MoveTop":"M3 2.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 2.25Zm5.53 2.97 3.75 3.75a.749.749 0 1 1-1.06 1.06L8.75 7.561v6.689a.75.75 0 0 1-1.5 0V7.561L4.78 10.03a.749.749 0 1 1-1.06-1.06l3.75-3.75a.749.749 0 0 1 1.06 0Z",
"MoveBottom":"M7.47 10.78a.749.749 0 0 0 1.06 0l3.75-3.75a.749.749 0 1 0-1.06-1.06L8.75 8.439V1.75a.75.75 0 0 0-1.5 0v6.689L4.78 5.97a.749.749 0 1 0-1.06 1.06l3.75 3.75ZM3.75 13a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Z"
issues相关
更改发布时间
如需修改发布时间, 可以在 issues 文章最后一行添加如下代码, 里面的时间是采用时间戳的形式, 可以用这个👉网站 转换.
<!-- ##{"timestamp":1490764800}## -->
Issues Label 备份
Label Name | Color | 效果 |
---|---|---|
翻墙 | #cb7b58 |
|
软件 | #5da167 |
|
网站 | #7057ff |
|
日常 | #008672 |
|
教程 | #0075ca |
|
图片处理 | #4c6cc5 |
|
Anime | #E77AB1 |
|
Win | #5AB3F3 |
|
VPS | #5319e7 |
|
JS | #AD3152 |
|
CSS | #218155 |
|
Github | #333333 |
|
CDN | #cb222c |
|
Bug | #D73A4A |
|
Game | #BC49AB |
|
Readme.md
📄 > 文章总数.
💬 > 评论总数.
🌺 > 是统计的所有文章的字符数.
⏰ > 最后一次 Actions 的时间.