文章摘要
白衣 DeepSeek

前言

写这个仅用于自己写文章时,方便直接拿来使用,插件的原理就是封装好了短代码,但是最终呈现还是以HTML来展示的。个人觉得插件有插件的好处,手搓有手搓的好处。手搓意味着不依赖插件,文章跨平台迁移更方便,不用担心文章样式失效。

一.展开关闭盒子

1
2
3
4
5
6
<div class="tab-item-content active" id="fold-3">
<details>
<summary>标题</summary>
<p>内容</p>
</details>
</div>
1
2
3
4
5
6
<div class="tab-item-content active" id="fold-3">
<details open="">
<summary>标题</summary>
<p>内容</p>
</details>
</div>
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
/* details 元素的基本样式 */
details {
display: block;
position: relative;
margin-bottom: 1rem;
min-height: 54px;
overflow: hidden;
border-radius: 12px;
border: var(--style-border);
transition: border 0.3s;
}

/* 鼠标悬停在 details 元素上时的样式 */
details:hover {
border: var(--style-border-hover-always);
}

/* details 元素中 summary 的样式 */
details summary {
position: absolute;
padding: 0.5rem 1rem;
background: var(--efu-card-bg);
margin: 0;
transition: 0.3s;
box-shadow: var(--efu-shadow-border);
left: 0;
width: 100%;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* details 元素中第二个子元素的样式 */
details>:nth-child(2) {
margin-top: calc(54px + 1rem)!important;
}

/* 当 details 元素处于打开状态时,summary 的样式 */
details[open] summary {
background: var(--efu-lighttext);
color: var(--efu-card-bg);
}

/* summary 元素的伪元素 before 样式 */
details summary::before {
content: '';
padding: 4px;
}

/* 鼠标悬停在 summary 元素上时的样式 */
details summary:hover {
cursor: pointer;
background: var(--efu-lighttext);
color: var(--efu-card-bg);
transition: 0.3s;
box-shadow: var(--efu-shadow-main);
}

/* summary 元素获得焦点时的样式 */
details summary:focus {
outline: 0;
}

/* summary 元素的标记样式 */
details summary::marker {
color: var(--efu-lighttext);
transition: 0.3s;
}

/* 当 details 元素处于打开状态时,summary 元素标记的样式 */
details[open] summary::marker {
color: var(--efu-card-bg);
}

/* 鼠标悬停在 summary 元素上时,标记的样式 */
details summary:hover::marker {
color: var(--efu-card-bg);
}

/* 当 details 元素处于打开状态时的样式 */
details[open] {
border-radius: 12px;
border: var(--style-border-hover-always);
padding: 0 1.5rem;
background: var(--efu-card-bg);
}

/* 鼠标悬停在 summary 元素上时,添加的伪元素 after 样式 */
details summary:hover:after {
position: absolute;
content: '+';
text-align: center;
top: calc(50% - 2px);
transform: translateY(-50%);
right: 16px;
line-height: 1;
}

/* 当 details 元素处于打开状态,鼠标悬停在 summary 元素上时,伪元素 after 的样式 */
details[open]>summary:hover:after {
content: '-';
}

/* 媒体查询,当屏幕宽度小于等于 768px 时的样式 */
@media screen and (max-width: 768px) {
details[open] {
padding: 0 16px;
}
}
标题

内容

二.引用文章链接

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="tab-item-content active" id="link-3">
<a class="tag-link" href="https://blog.deepsea.xin/posts/6050.html" target="_blank">
<div class="tag-link-tips">
引用文章链接
</div>
<div class="tag-link-bottom">
<div class="tag-link-left">
<i class="solitude fas fa-link"></i>
</div>
<div class="tag-link-right">
<div class="tag-link-title">
白衣博客
</div>
<div class="tag-link-sitename">
基于lua简单实现APP的远程更新
</div>
</div>
<i class="solitude fas fa-chevron-right"></i>
</div>
</a>
</div>
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
/* link短代码 */
.article-container a.tag-link {
background: var(--efu-secondbg);
border-radius: 8px !important;
display: flex;
border: var(--style-border);
flex-direction: column;
padding: 0.5rem 1rem !important;
border-width: 1px;
margin: 1rem 0;
text-decoration: none; /* 去除默认的链接下划线 */
color: inherit; /* 继承父元素的文本颜色 */
}

.article-container a.tag-link:hover {
background: var(--efu-main);
border: var(--style-border-hover) !important;
}

.article-container a.tag-link:hover .tag-link-tips {
color: var(--efu-white);
border-bottom-color: var(--efu-white);
}

.article-container a.tag-link:hover i {
opacity: 1;
}

.article-container a.tag-link i {
transition: 0.3s;
margin-left: auto;
opacity: 0.6;
}

.article-container a.tag-link .tag-link-bottom {
display: flex;
margin-top: 0.5rem;
align-items: center;
justify-content: space-around;
}

.article-container a.tag-link .tag-link-bottom .tag-link-left {
width: 60px;
min-width: 60px;
height: 60px;
background-size: cover;
border-radius: 8px;
background-color: var(--efu-card-bg);
display: flex;
align-items: center;
justify-content: center;
}

.article-container a.tag-link .tag-link-bottom .tag-link-left i {
padding: 0;
margin: auto;
font-size: 24px;
color: var(--efu-fontcolor);
}

.article-container a.tag-link .tag-link-bottom .tag-link-right {
margin-left: 1rem;
max-width: calc(100% - 76px - 1rem);
}

.article-container a.tag-link .tag-link-tips {
border-bottom: var(--style-border);
padding-bottom: 4px;
font-size: 12px;
color: var(--efu-gray);
font-weight: 400;
transition: 0.3s;
}

三.行内代码

1
<span class="inline-code">文本内容</span>
1
2
3
4
5
6
7
.inline-code {
border: 1px solid #ccc;
border-radius: 3px;
padding: 2px 5px;
margin: 0 5px; /* 添加水平外边距,可按需调整 */
font-family: 'Courier New', Courier, monospace;
}

ABCDEFGHIJKLMNOPQRSTUVWXYZ

四.选项卡(主题自带)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% tabs 选项卡示例 %}

<!-- tab 选项一 -->
选项一文本内容
<!-- endtab -->

<!-- tab 选项二 -->
选项二文本内容
<!-- endtab -->


<!-- tab 选项三 -->
选项三文本内容
<!-- endtab -->

{% endtabs %}

选项一文本内容

选项二文本内容

选项三文本内容

未完待续

如果你有更好的样式外观,欢迎评论区留言,白衣会考虑是否加入。