为hexo博客Fluid主题添加书单

参考

感谢北 辰の小 栈提供的代码及CSS样式,以及其文末提供的源码作者博客链接(链接已无法访问了)雨中的博客,尽管搜索了作者的名字等,似乎也只找到了博客园有作者相关信息(不确定)。总之,感谢。

改动及思路

因为北辰使用的是Volantis主题,其主要在layout目录下创建book.ejs来应用CSS样式,但Fluid主题是很好的支持自定义css的。因此可以将全部CSS放到/soucre/css/custom.css中,直接在主题的_config.fluid.yml中在自定义CSS处引用即可

Step1.创建自定义页面

终端中,进入博客目录后

1
hexo new page books

这会在你博客的/source下自动创建一个books文件夹,并在/source/books下自动创建index.md文件

Step2.自定义CSS

在你的博客/soucre/css/custom.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* 将以下内容添加到 source/css/custom.css */

/* 书籍列表容器样式 */
#book {
width: 100%;
}

#book .page {
overflow: hidden;
border-radius: 3px;
width: 100%;
}

#book .content {
display: flex;
align-items: center;
width: 100%;
margin: 0;
justify-content: space-between;
flex-wrap: wrap;
padding: 16px;
text-align: justify;
}

/* 响应式布局 */
@media screen and (max-width: 877px) {
#book .page .content {
flex-direction: column;
align-items: center;
}
}

/* 书籍卡片样式 */
#book .content li {
width: 380px;
list-style: none;
margin-bottom: 16px;
border-radius: 8px;
transition: all .3s ease 0s, transform .6s cubic-bezier(.6, .2, .1, 1) 0s;
}

#book .content li .info {
border-radius: 8px;
display: flex;
justify-content: flex-start;
padding: 16px 12px;
line-height: 1.7;
list-style: none;
}

/* 书籍封面3D效果 */
.book-container {
display: flex;
align-items: center;
justify-content: center;
perspective: 600px;
}

.book {
position: relative;
width: 100px;
height: 150px;
transform-style: preserve-3d;
transform: rotateY(-30deg);
transition: 1s ease;
list-style: none;
}

.book:before {
content: " ";
position: absolute;
left: 0;
top: 2px;
width: 23px;
height: 146px;
transform: translateX(84.5px) rotateY(90deg);
background: linear-gradient(90deg, #fff, #f9f9f9 5%, #fff 10%, #f9f9f9 15%, #fff 20%, #f9f9f9 25%, #fff 30%, #f9f9f9 35%, #fff 40%, #f9f9f9 45%, #fff 50%, #f9f9f9 55%, #fff 60%, #f9f9f9 65%, #fff 70%, #f9f9f9 75%, #fff 80%, #f9f9f9 85%, #fff 90%, #f9f9f9 95%, #fff);
}

.book > :first-child {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 150px;
transform: translateZ(12.5px);
border-radius: 0 2px 2px 0;
box-shadow: 5px 5px 20px #666;
}

.book:after {
content: " ";
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 150px;
transform: translateZ(-12.5px);
background-color: #555;
border-radius: 0 2px 2px 0;
}

/* 书籍信息卡片样式 */
#book .content li .info > div {
margin-left: 26px;
}

#book .content li .info h3 {
font-size: 16px;
position: unset;
background: none;
display: block;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

#book .content li .info h3:before {
display: none;
}

#book .content li .info p {
font-size: 14px;
line-height: 1.7;
}

/* 悬浮效果 */
#book .content li:hover .book {
transform: rotateY(0deg);
}

/* 书籍简介弹出层 */
#book .info .info-card {
position: relative;
width: 250px;
overflow: hidden;
transition: .3s;
}

#book .info .info-card .hidden-content {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
top: 50%;
left: 50%;
height: 0%;
transform: translate(-50%, -50%);
filter: blur(12px);
opacity: 0;
background: #fff;
width: 100%;
transition: .5s;
}

#book .info .info-card .hidden-content .text {
height: 80%;
width: 80%;
padding: 5px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
color: #676767;
float: left;
clear: both;
text-align: justify;
}

#book .info .info-card .hidden-content .text::first-letter {
font-size: 20px;
float: left;
margin: 0 .2em 0 0;
}

#book .info a:hover + .info-card .hidden-content {
opacity: 1;
height: 100%;
width: 100%;
filter: unset;
}

#book .content li .info a[target="_blank"]:hover {
color: #0056b3;
text-decoration: underline;
}

#book .content li .info .pwd-text {
font-size: 16px;
color: #666;
margin-top: 3px;
}

Step3.修改index.md

在上述所说的/source/books/index.md中,修改为以下内容:
titlebanner_img等可以自定义,此处不再缀述
html中的链接请自行替换,要增加书籍复制<!-- 书籍示例 -->下面的两个<li>标签之间的内容,然后更换后继续往后粘贴就是

1
2
3
<li>
......
</li>

以下为index.md内容

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
---
title: 书单
date: 2024-11-27 10:33:03
banner_img:
---

<div id="book">
<div class="page">
<ul class="content">
<!-- 书籍示例 -->
<li>
<div class="info">
<a href="可以填豆瓣链接" target="_blank" rel="noopener noreferrer" class="book-container">
<div class="book" title="我与地坛">
<img src="https://cdn.specialhua.top/hexo_img/我与地坛.webp" alt="我与地坛">
</div>
</a>
<div class="info-card">
<div class="hidden-content">
<p class="text">书籍简介</p>
</div>
<h3>《书名》</h3>
<p>作者:</p>
<p>出版时间:</p>
<p>
<a href="可以填书籍下载链接" target="_blank" rel="noopener noreferrer">📥 下载</a>
</p>
<p class="pwd-text">
提取码:xxxx
</p>
</div>
</div>
</li>
<!-- 书籍示例2 -->
</ul>
</div>
</div>

Step4.编辑_config.fluid.yml

在fluid主题配置中,加入导航栏按钮:

1
2
3
navbar:
menu:
- { key: "书单", link: "/books/", icon: "iconfont icon-book"}

link:对应上述hexo new page books创建的页面,如果不是自行修改。icon:参考fluid主题配置文档,默认已提供一些icon图标

Step5.不用多说

1
2
3
4
5
hexo clean && hexo g

hexo s

hexo d

效果

3D书籍效果

鼠标悬浮后转2D及显示简介


为hexo博客Fluid主题添加书单
https://inkcodes.com/2024/11/27/为hexo博客Fluid主题添加书单/
作者
Specialhua
发布于
2024年11月27日
更新于
2024年11月27日
许可协议