引言
首页的欢迎横幅
预览:
欢迎横幅
由于项目是部署在Cloudflare上的,所以那个永久域名大概不会过期(除非Cloudflare倒闭),但是当前域名可就不一定了,因为我想要注册的caihongtu.com目前被人注册了,所以先注册了这个caihongtu.asia
,等那个com
域名可以注册了,我会立马出手的。(别问为什么不去找对方买,因为没💰)
修改代码
- 博客的根目录新建
layouts
文件夹(默认就有,没有的话手动创建),之后将./themes/hugo-theme-stack/layouts/index.html
下的文件复制到刚刚创建的layouts文件夹内(如果这个文件夹下本来就有对应文件,则无须复制),之后再在index.html
中添加以下内容:
点我查看代码
(点击展开收缩)
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
|
{{ define "main" }} {{ $pages := where .Site.RegularPages "Type" "in"
.Site.Params.mainSections }} {{ $notHidden := where .Site.RegularPages
"Params.hidden" "!=" true }} {{ $filtered := ($pages | intersect $notHidden) }}
{{ $pag := .Paginate ($filtered) }}
<!-- 首页欢迎字幅板块 -->
<div class="welcome">
<p style="font-size: 2rem; text-align: center; font-weight: bold">
<span class="shake">{{ T "welcome.emoji" }}</span>
<span class="jump-text1"> {{ T "welcome.msg1" }} </span>
<span class="jump-text2"> {{ T "welcome.msg2" }} </span>
<span id="site-title-static" style="color: #e99312">{{ .Site.Title }}</span>
<span id="site-title" style="display: none; color: #e99312"></span>
</p>
<p style="font-size: 1.5rem; text-align: center; font-weight: bold">
<span
>{{ T "welcome.currentText" }}:
<a href="{{ .Site.BaseURL }}"
>{{ .Site.BaseURL | strings.TrimPrefix "http://" | strings.TrimPrefix
"https://" | strings.TrimSuffix "/" }}</a
></span
>  
<span
>{{ T "welcome.permanentText" }}:
<a href="https://cai-hong-tu-blog.pages.dev"
>cai-hong-tu-blog.pages.dev</a
></span
>
</p>
</div>
<script type="module">
// 动态生成字符和样式
document.addEventListener("DOMContentLoaded", () => {
const title = "{{ .Site.Title }}"; // 获取 Hugo 变量
const titleContainer = document.getElementById("site-title");
const staticTitle = document.getElementById("site-title-static");
// 动态添加字符到 #site-title
title.split("").forEach((char, index) => {
const span = document.createElement("span");
span.textContent = char;
span.className = `jump-text jump-text${index}`;
titleContainer.appendChild(span);
});
// 动态生成 CSS 动画规则
const styleSheet = document.styleSheets[0];
title.split("").forEach((_, index) => {
const delay = (index * 0.1).toFixed(1); // 每个字符延迟 0.1s
const rule = `
.jump-text${index} {
display: inline-block;
animation: jump 0.5s 1;
animation-delay: ${delay}s;
}
`;
styleSheet.insertRule(rule, styleSheet.cssRules.length);
staticTitle.style.display = "none";
titleContainer.style.display = "inline";
});
});
</script>
<!-- ------首页欢迎字幅板块------ -->
<section class="article-list">
{{ range $index, $element := $pag.Pages }} {{ partial "article-list/default" .
}} {{ end }}
</section>
<script type="module">
import { commentCount } from "https://unpkg.com/@waline/client@v3/dist/comment.js";
commentCount({
serverURL: "{{.Site.Params.comments.waline.serverURL}}",
});
</script>
{{- partial "pagination.html" . -}} {{- partial "footer/footer" . -}} {{ end }}
{{ define "right-sidebar" }} {{ partial "sidebar/right.html" . }} {{ end }}
|
- 上面是我的
index.html
所有的代码,你只需要关注“首页欢迎字幅板块”即可。
下面是横幅的css样式,目录在./assets/scss/custom.scss
中
点我查看代码
(点击展开收缩)
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
|
//---------------------------------------------------------
//首页欢迎板块样式
.welcome {
color: var(--card-text-color-main);
background: var(--card-background);
box-shadow: var(--shadow-l2);
border-radius: 30px;
display: inline-block;
}
// 👋emoji实现摆动效果
.shake {
display: inline-block;
animation: shake 1s;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: none;
animation-play-state: running;
animation-name: shake;
animation-timeline: auto;
animation-range-start: normal;
animation-range-end: normal;
animation-delay: 2s;
@keyframes shake {
0% {
transform: rotate(0);
}
25% {
transform: rotate(45deg) scale(1.2);
}
50% {
transform: rotate(0) scale(1.2);
}
75% {
transform: rotate(45deg) scale(1.2);
}
100% {
transform: rotate(0);
}
}
}
// 实现字符跳动动画
.jump-text1 {
display: inline-block;
animation: jump 0.5s 1;
}
.jump-text2 {
display: inline-block;
animation: jump 0.5s 1;
animation-delay: 0.1s;
}
@keyframes jump {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
|
附录
参考
版权信息
本文原载于 彩虹兔の博客,遵循 CC BY-NC-SA 4.0 协议,复制请保留原文出处。