仿轻笑博客背景美化
原作者
请查看教程内容
一.前言
因为这部分内容轻笑并没有有关于这个内容,所以我在这里写好了,方便以后查找
二.教程开始
在 [BlogRoot]\themes\butterfly\layout\includes\head.pug 中引入 div模块
1
2#web_bg
#svg_bg在自定义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#web_bg {
position: fixed;
z-index: -999;
width: 100%;
height: 100%;
background: -webkit-linear-gradient(35deg, #0095c2 21%, #64e1C8f9 100%);
background: -moz-linear-gradient(35deg, #0095c2 21%, #64e1C8f9 100%);
background: -o-linear-gradient(35deg, #0095c2 21%, #64e1C8f9 100%);
background: -ms-linear-gradient(35deg, #0095c2 21%, #64e1C8f9 100%);
background: linear-gradient(55deg, #0095c2 21%, #64e1C8f9 100%);
background-attachment: local;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
#svg_bg {
background-image: url(https://www.myxz.top/img/background.svg);
-webkit-background-size: initial;
-moz-background-size: initial;
background-size: initial;
position: fixed;
height: 100%;
width: 100%;
opacity: .2;
background-position: center;
z-index: -998;
}
导航栏居中教程
这里我放当前比较有效的教程
图标引入
这里分为两种不同位置的自定义iconfont图标
导航栏添加
社交添加
侧边栏美化以及侧边栏卡片美化(轻笑)
原作者
请查看教程内容
前言
因为这部分内容轻笑并没有有关于这个内容,所以我在这里写好了,方便以后查找,喜欢这个风格的可以进行CTRL+C和CTRL+V教程开始
大部分已经有进行标识,对于以后可以进行维护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/* 侧边栏整体卡片样式调整 */
#aside-content .card-widget {
border-width: 2px;
border-style: solid;
border-color: rgba(0, 255, 255, 0.6);
border-image: initial;
transition: 0.3s;
background: rgba(255, 255, 255, .67);
}
/* 侧边栏整体卡片文字样式调整 */
#aside-content .card-widget.card-friend-link, .card-webinfo {
font-size: 105%;
}
/* 侧边栏整体卡片和首页文章列表样式调整 */
#aside-content .card-widget, #recent-posts>.recent-post-item {
border-radius: 18px;
}
/* 侧边栏本人介绍卡片样式调整 */
.avatar-img {
border-radius: 25px ;
box-shadow: 2.2px 2.2px 2.2px rgba(10, 207, 233, .3) ;
}
#aside-content > .card-widget:first-child {
clip-path: polygon(0px 0px, 100% 0px, 100% 50%, 100% 100%, 80% 100%, 75% 99%, 25% 99%, 20% 100%, 0px 100%);
}
#aside-content .card-info .author-info__name {
font-weight: 800 ;
font-size: 1.8em ;
}
#aside-content .card-info .author-info__description {
margin-top: -.2em ;
font-size: 16.5px ;
font-weight: 700;
}
.card-info-data-item:not(:last-child)::after {
opacity: .3;
position: absolute;
top: 11px;
right: 0;
content: "";
width: 1px;
height: 35px;
background: var(--font-color);
}
.site-data > a .headline {
color: var(--font-color);
font-size: 1em ;
}
.site-data > a .length-num {
margin-top: -.42em ;
color: var(--text-highlight-color);
font-size: 1.4em ;
}
/* 侧边栏其他卡片样式调整 */
#aside-content .card-widget:not(.card-info):not(#card-tuijian):before {
content: "";
width: 12.5px;
background: linear-gradient(to top, transparent, #ee6363bb);
display: block;
position: absolute;
left: 0;
height: 113px;
bottom: 27px;
}
#aside-content .card-widget:not(.card-info):not(#card-tuijian) {
clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 calc(100% - 52.5px), 12.5px calc(100% - 40px), 12.5px calc(100% - 50px), 0 calc(100% - 62.5px), 0 calc(100% - 82.5px), 12.5px calc(100% - 70px), 12.5px calc(100% - 80px), 0 calc(100% - 92.5px), 0 calc(100% - 112.5px), 12.5px calc(100% - 100px), 12.5px calc(100% - 112.5px), 12.5px calc(100% - 110px), 0 calc(100% - 122.5px), 0 calc(100% - 142.5px), 12.5px calc(100% - 130px), 12.5px calc(100% - 141.5px), 0 calc(100% - 154px), 0 0);
border-left: none ;
}
首页文章卡片美化(轻笑)
原作者
请查看教程内容
前言
因为这部分内容轻笑并没有有关于这个内容,所以我在这里写好了,方便以后查找,喜欢这个风格的可以进行CTRL+C和CTRL+V在[BlogRoot]\source\css下新建自定义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/* 首页文章卡片样式表调整 */
#recent-posts > .recent-post-item >.recent-post-info > .article-title {
text-align: center;
}
#recent-posts > .recent-post-item >.recent-post-info > .article-meta-wrap {
text-align: center;
}
#recent-posts > .recent-post-item >.recent-post-info > .content {
text-align: center;
}
/* QCQX 首页文章卡片设置 */
#recent-posts>.recent-post-item {
display: -webkit-box;
display: -moz-box;
display: -webkit-flex;
display: -ms-flexbox;
display: box;
display: flex;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-o-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-moz-box-align: center;
-o-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
overflow: hidden;
height: 200px
}
@media screen and (max-width: 768px) {
#recent-posts>.recent-post-item {
-webkit-box-orient:vertical;
-moz-box-orient: vertical;
-o-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
height: 300px
}
}
/* QCQX 首页文章卡片设置 */
#recent-posts > .recent-post-item .post_cover img.post_bg {
border-radius: 12px;
transform: none;
}
首页添加随机banner(轻笑)
原作者
教程地址
首页文章隐藏文字
效果来源
请查看教程内容
这种隐藏文字的方式可以给大家展示出来,整个效果是非常可观的。
1 | #recent-posts>.recent-post-item:hover .recent-post-info .content { |
首页文章卡片美化
效果来源
请查看教程内容
既然已经添加了文章文字隐藏,那么就可以进行美化文章卡片
1 | /* 首页文章卡片颜色 */ |
首页分类条美化
效果来源
请查看教程内容
教程基于清羽飞扬的教程和轻笑的样式进行魔改,感兴趣的可以去看。
- 在[BlogRoot]\themes\butterfly\layout\includes中新建categoryBar.pug
1
2
3
4
5
6
7
8
9.home-catalog-bar#catalog-bar
i.fa-fw.fas.fa-shapes
#catalog-list(class=is_home() ? 'home' : '')
.category-bar-item.catalog-shouye-item(class=is_home() ? 'select' : '', id="home-catalog-item")
a(href=url_for('/'))= __('博客')
each item in site.categories.find({ parent: { $exists: false } }).data
.category-bar-item(class=select ? (select === item.name ? 'select' : '') : '', id=item.name)
a(href=url_for(item.path))= item.name
a.category-bar-more(href=url_for('/categories/'))= __('更多分类') - 然后将其添加到不同的位置,比如我这里实现了添加到分类页面等位置,配合上pjax可以做到无刷更新,效果很好,打开分类文件地址:[BlogRoot]\themes\butterfly\layout\category.pug和主页文件地址:[BlogRoot]\themes\butterfly\layout\index.pug,添加其中两行代码,去掉加号即为正常缩进。这个和原教程基本一样
注意:修改后需要将配置文件中,分类页面的主题改成index,否则不会显示。
1 | extends includes/layout.pug |
1 | extends includes/layout.pug |