关于本站

这里记录了站点的变更

引言:

Lucas算是个学生党,第一次玩服务器,没有米,买了个2核1G的服务器,稀里糊涂的配置好了域名和DNS,因为没有证书,所以是不安全的http链接,当时Lucas想搞成https,但是不会搞,导致Lucas的DNS解析出了问题,无能的Lucas只能重置服务器.

关于Lucas,他只是一个脚本小子,就是那种只会用工具,不会写代码的那种,所以Lucas用的是Wordpress的可视化编辑,js、css、html等一概不会,还有Markdown语法记不住,所以Lucas的博客很一般,像是十年前的东西(手动滑稽).

时间一转眼到了2025-09-28,由于Lucas无力支付云服务器的费用,故而转向Hexo+Github Pages的方法搭建播客,这篇博文的更新表示博客迁移工作已经基本完成.

兜兜转转到了2025-12-14,Lucas重新购买服务器,并且将静态文件上传云服务器,实现再次迁移

构筑之路:

  • 2025年10月1日 博客背景图完成更换,顶部图去除,页脚遮罩去除,文章卡片的描述.
  • 2025年10月5日 博客外观完成背景透明化,字体更换为霞鹜文楷.
  • 2025年10月15日 博客添加giscus评论系统,添加Snackbar标签显示,配置站内链接预加载(Instantpage).
  • 2025年10月21日 搭建检索系统. 实际上早就做了,不过忘了具体时间了
  • 2025年10月24日
  • 2025年10月26日 经过长期不懈的努力,终于解决了文章主页文章卡片不能实现透明化的问题,其中感谢guyue老哥帮我找到body div#recent-posts .recent-post-item这行代码中的.号之前没有>号.同时感谢DeepSeek的modify.css的透明化代码生成写css对我来说还是太难了.最最最严重的问题实际上不是代码问题,而是我modify.css文件被我放在了root/css下,而正确路径应该是root/soucre/css之下,我的modify.css代码如下,以供参考:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/* modify.css - 透明化主题样式 */

:root {
--trans-light: rgba(2552552550.75);
--trans-dark: rgba(2525250.75);
/* 注释掉 backdrop-filter 变量 */
/* --backdrop-filter: blur(12px) saturate(160%); */
}

/* ===== 强制主页文章卡片透明 ===== */
/* 使用最高优先级的选择器 */
body div#recent-posts .recent-post-item
body .recent-post-item
#recent-posts .recent-post-item
.recent-post-item {
background: var(--trans-light) !important;
/* 注释掉毛玻璃效果 */
/* backdrop-filter: var(--backdrop-filter) !important; */
/* -webkit-backdrop-filter: var(--backdrop-filter) !important; */
border-radius: 25px !important;
border: none !important;
box-shadow: 0 8px 32px rgba(0000.1) !important;
}

/* 移除可能的背景图片 */
#recent-posts .recent-post-item[style*="background"]
.recent-post-item[style*="background"] {
background: var(--trans-light) !important;
background-image: none !important;
}

/* 确保内部所有元素透明 */
#recent-posts .recent-post-item *:not(a):not(button):not(.btn) {
background: transparent !important;
}

/* 特别处理各个部分 */
#recent-posts .recent-post-item .post-cover
#recent-posts .recent-post-item .post-cover img
#recent-posts .recent-post-item .post-content
#recent-posts .recent-post-item .post-info
#recent-posts .recent-post-item .post-meta-info
#recent-posts .recent-post-item .article-meta-wrap
#recent-posts .recent-post-item .post-meta
#recent-posts .recent-post-item .post-title {
background: transparent !important;
}

/* 页面头部透明 */
#page-header
#page-header:before {
background: transparent !important;
}
#page-header.post-bg
#page-header.not-home-page {
height: 280px !important;
}
#page-header #post-info {
bottom: 40px !important;
}
#page-header #page-site-info {
top: 140px !important;
}

/* 侧边栏卡片透明 */
#aside-content .card-widget {
background: var(--trans-light) !important;
/* 注释掉毛玻璃效果 */
/* backdrop-filter: var(--backdrop-filter) !important; */
/* -webkit-backdrop-filter: var(--backdrop-filter) !important; */
border-radius: 18px !important;
border: none !important;
}

/* 文章页、归档页、普通页面透明 */
div#post
div#page
div#archive {
background: var(--trans-light) !important;
/* 注释掉毛玻璃效果 */
/* backdrop-filter: var(--backdrop-filter) !important; */
/* -webkit-backdrop-filter: var(--backdrop-filter) !important; */
border-radius: 20px !important;
border: none !important;
}

/* 顶部图片样式 */
.top-img {
height: 250px;
margin: -50px -40px 50px;
border-top-left-radius: inherit;
border-top-right-radius: inherit;
background-position: center center;
background-size: cover;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-ms-transition: all 0.3s;
transition: all 0.3s;
}

/* 页脚透明 */
#footer:before {
background-color: rgba(2552552550.5) !important;
}
#footer-wrap
#footer-wrap a {
color: #111;
-webkit-transition: unset;
-moz-transition: unset;
-o-transition: unset;
-ms-transition: unset;
transition: unset;
}

/* ===== 夜间模式 ===== */
[data-theme='dark'] #recent-posts .recent-post-item
[data-theme='dark'] .recent-post-item {
background: var(--trans-dark) !important;
}

[data-theme='dark'] #aside-content .card-widget
[data-theme='dark'] div#post
[data-theme='dark'] div#page
[data-theme='dark'] div#archive {
background: var(--trans-dark) !important;
}

[data-theme='dark'] .top-img {
filter: brightness(0.8);
}

[data-theme='dark'] #footer:before {
background-color: rgba(0000.5) !important;
}

[data-theme='dark'] #footer-wrap
[data-theme='dark'] #footer-wrap a {
color: var(--light-grey);
}

/* 移动端响应式 */
@media screen and (max-width: 768px) {
#page-header.not-home-page {
height: 200px !important;
}
#page-header #post-info {
bottom: 10px !important;
}
#page-header #page-site-info {
top: 100px !important;
}

.top-img {
height: 230px;
margin: -36px -14px 36px;
}

/* 移动端减小模糊效果 */
/* 注释掉移动端的毛玻璃效果 */
/*
#recent-posts .recent-post-item,
#aside-content .card-widget {
backdrop-filter: blur(8px) saturate(160%) !important;
-webkit-backdrop-filter: blur(8px) saturate(160%) !important;
}
*/
}
  • 2025年11月3日

  • 2025年11月4日

  • 2025年11月6日 博客文章Lucas的碎碎念博客更新日志测试,分别迁移到关于页面下的关于我关于本站测试页面页面,保证了主页的干净整洁.实际上不想让这三篇充数

  • 2025年11月17日

    • 昨天,Lucas的好朋友AnTooLot说站点文章的版权信息部分,写上那句诗很蠢确实有点蠢,于是Lucas就修改了一下.这点东西都要放进日志页面说,Lucas真是蠢大了,日志变日记
    • 上线一言
  • 2025年11月19日 上线Twikoo评论系统,实现TwikooGiscus双系统,使用MongoDB+Vercel搭建.使用子域名和Cloudflare实现国内访客使用Twikoo支持邮件通知回复,支持Markdown,支持表情,支持免登录.

  • 2025年11月26日 使用hexo-spoiler插件实现文字毛玻璃遮罩效果.可以写羞羞的文字了

  • 2025年12月6日 博客网址正式从lris625.top变更为blog.lris625.top,顶级域名lris625.top变为导航页,连通Lucas的各个网站.

  • 2025年12月13日 Twikoo评论系统从MongoDB+Vercel更换为私有服务器部署,连通性不再是问题

  • 2025年12月14日 Lucas的小博客正式从Github Pages迁移到服务器,进一步提升访问速度!使用Syncthing同步本地静态文件目录和服务器文件目录.

  • 2025年12月20日 网站字体从本地加载更改为使用中文网字计划(字图CDN),使网站加载速度得到质的飞跃,感谢中文网字计划.我本地的字体文件高达23MB,严重拖慢网站加载速度

  • 2025年12月30日 网站接入腾讯云境外EdgeOne——CDN加速.

  • 2025年12月31日 由于我的域名注册商Spaceship并不在工信部名单中,我也不想转移域名增加费用,所以腾讯云EdgeOne和阿里云ESA国内节点加速无法使用,国外节点加速反而不如直连,故撤去CDN加速.

  • 2026年1月5日

    • 依照Rs-dld的教程,博客站更换busuanzi接口为cn.vercount.one,避免busuanzi拖慢网站加载速度.
    • 页脚加入 Shields.io 徽标块,兼具美观与可读性.
  • 2026年1月7日 使用OneDrive家庭版的1T空间,搭配OneDrive的响应式嵌入代码,成功实现博客内高清视频的播放,详见测试页面. 淦,还是钞能力管用,嫖的E5不能公开嵌入视频文件,今天看了一个人的博客才想起来我买OD家庭版的一个初衷

  • 2026年1月16日

    • 根据Liushen的教程完成了友链页面的状态检测.
    • 更改友链状态检测的border-radius元素,调整全站字体大小为16px(原14px),增强文字可读性.

未来计划:

  • 加入站点运行时间,文章卡片上字数统计和阅读时间
  • 加入一言
  • 搭建图库并且图片云端化
  • 搭建检索系统,无后端的评论系统
  • 完成博客站备案,接入境内CDN加速
  • 配置VS Code自动Push到GitHub库
  • 优化日间夜间模式更换,尝试根据访问者当地日升落时间自动更换
  • 加入和风天气API

评论
avatar
LucasAndrew
欲买桂花同载酒,终不似,少年游
关注
公告
Welcome to Lucas'blog😎( •̀ ω •́ )✧
最新文章
网站信息
文章数目 :
6
运行时间 :
本站总字数 :
10.3k
本站访客数 :
本站总浏览量 :
最后更新时间 :
一言
:D 获取中...
:D 获取中...