- 优化网站流畅度(玄学)
- 重写关于信息界面,流水式展示
- 修复个别小错误
- 删除冗余显示的代码,界面更清爽
2024-12-22
2024-12-10
2024-11-11
2024-10-21
2024-09-24
2024-09-08
- 优化网站流畅度(玄学)
- 久违的更新,优化了网页UI的各个小细节
2024-08-20
- 优化网站流畅度(玄学)
- 内心丰盈者,独行也独众,心有山海,静而不争
2024-07-28
- 优化网站流畅度(玄学)
- 引入新的字体 CDN,取消 Google analysis
- 连雨不知春去,一晴方觉夏深
2024-07-21
2024-06-27
- 优化网站流畅度(玄学)
- 美化了Blog页面, 使更加简洁美观,如你所见
- 内心丰盈者,独行也独众,心有山海,静而不争
2024-06-20
- 优化网站流畅度(玄学)
- 优化多处UI
- 删减了部分拖慢网站速度的JS/CSS代码
- 更新了MKdocs补充系列教程
- 近期略有时间,所以更文变得高产
2024-06-19
2024-06-2
2024-06-2
2024-05-15
Show source code
Look at this source open_in_new_tab.js:
| // Description: Open external links in a new tab and PDF links in a new tab
// Source: https://jekyllcodex.org/without-plugin/new-window-fix/
//open external links in a new window
function external_new_window() {
for(let c = document.getElementsByTagName("a"), a = 0;a < c.length;a++) {
let b = c[a];
if(b.getAttribute("href") && b.hostname !== location.hostname) {
b.target = "_blank";
b.rel = "noopener";
}
}
}
//open PDF links in a new window
function pdf_new_window ()
{
if (!document.getElementsByTagName) {
return false;
}
let links = document.getElementsByTagName("a");
for (let eleLink=0; eleLink < links.length; eleLink ++) {
if ((links[eleLink].href.indexOf('.pdf') !== -1)||(links[eleLink].href.indexOf('.doc') !== -1)||(links[eleLink].href.indexOf('.docx') !== -1)) {
links[eleLink].onclick =
function() {
window.open(this.href);
return false;
}
}
}
}
function apply_rules() {
external_new_window();
pdf_new_window();
}
if (typeof document$ !== "undefined") {
// compatibility with mkdocs-material's instant loading feature
// based on code from https://github.com/timvink/mkdocs-charts-plugin
// Copyright (c) 2021 Tim Vink - MIT License
// fixes [Issue #2](https://github.com/JakubAndrysek/mkdocs-open-in-new-tab/issues/2)
document$.subscribe(function() {
apply_rules();
console.log("Applying rules");
})
}
|
2024-05-05
2024-04-22
2024-04-22
- 优化网站流畅度(玄学)
- 网站全面贴合圆角设计,非常好看
2024-04-12
- 优化网站流畅度(玄学)
- 重写主页index.md,更加美观,贴合圆角设计
2024-04-12
- 优化网站流畅度(玄学)
- 感谢W1ndys提出的使用软编码配置友链界面,使得友链添加更加规范化
- 引入网页翻译实验性功能(详见右上角翻译按钮)
2024-04-06
2024-04-02
- 优化网站流畅度(玄学)
- 在mkdocs.yml的plugins模块中引入
!ENV [CI, false]
语句,极大缩短mkdocs serve
静态预览时间(3-5s)
- 本Mkdocs-Wcowin主题案例:
2024-03-14
- 优化网站流畅度(玄学)
- 3月14日(March 14th)是公历一年中的第73天(闰年第74天),离全年的结束还有292天。是国际圆周率日。其中历史上发生的大事件有阿尔伯特·爱因斯坦的出生。 [10]卡尔·马克思、斯蒂芬·威廉·霍金的逝世。
2024-02-20
- 优化页脚“本站访问量和萌ICP备20230640号”显示方式
- 优化网站流畅度(玄学)
2024-02-02
- 网站图片全部迁移至smms(更加稳定流畅)
- 着手改写MKdocs教程,使得条理更加清晰
- 优化网站流畅度(玄学)
- 删除大量繁琐无用代码
2024-02-01
2024-01-30
- 友链数量达到16位
- 修复了一些bugs
- 本网站已经被百度/谷歌收录(确信,使用百度/谷歌搜索Wcowin字样即可)
- 优化网站流畅度(玄学)
2024-01-05