Skip to content

Commit 72232cb

Browse files
committed
auto push
1 parent 256725a commit 72232cb

File tree

6 files changed

+35
-11
lines changed

6 files changed

+35
-11
lines changed

src/assets/img/Hill233.jpg

198 KB
Loading

src/assets/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ul {
4747
background-color: rgba(0, 0, 0, 0.2);
4848
border-radius: 5px;
4949
margin: 0 5px;
50-
box-shadow: -1px 1px 3px rgb(0, 0, 0);
50+
/* box-shadow: -1px 1px 3px rgb(0, 0, 0); */
5151
padding: 0 5px;
5252
vertical-align: middle;
5353
}

src/logic/MyLogic.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,62 +11,71 @@ const articles: ArticlesType[] = [
1111
name: "PersonalResume",
1212
title: "个人简历",
1313
date: "2023-12-24",
14+
description: "来自我的个人简历,我在里面写了很多我自己的个人事迹、个人经历等。我已经几乎能把我能公开的信息全部公开了!各位可以从中了解我的生平,了解我的一些个人准则等。",
1415
tags: ["关于我"]
1516
},
1617
{
1718
id: 2,
1819
name: "WorldOutlook",
1920
title: "我的世界观",
2021
date: "2023-12-27",
22+
description: "这是我的世界观嗷~各位可以来看看我的世界观里有什么是能吸引到你的!我可是一名福瑞控控呀,欢迎各位来基于我的世界观来创作小说嗷~",
2123
tags: ["世界观"]
2224
},
2325
{
2426
id: 3,
2527
name: "AboutMe",
2628
title: "关于我",
2729
date: "2024-5-5",
30+
description: "一些令我非常气愤的事情,不想多说,只想摆烂。。",
2831
tags: ["关于我"]
2932
},
3033
{
3134
id: 4,
3235
name: "WorldOutlook2",
3336
title: "世界观所使用的语言",
3437
date: "2025-1-17",
38+
description: "我世界观里使用的语言!啊呀,虽然并不是真正意义上的语言,这其实是我的游戏【八个问题】使用的语言啦!不过各位倒可以从中借鉴一下。",
3539
tags: ["世界观"]
3640
},
3741
{
3842
id: 5,
3943
name: "HighlightTest",
4044
title: "使用Vue + TypeScript实现代码高亮+行号测试",
4145
date: "2025-4-25",
46+
description: "这只是一篇短教程罢了,可以让各位快速学习如何通过Vue+Typescript实现一个highlightjs的行号显示!里面实现可能有点粗糙,不过可以用就对了!",
4247
tags: ["编程"]
4348
},
4449
{
4550
id: 6,
4651
name: "BlackWorldBefore",
4752
title: "世界观——前言",
4853
date: "2025-5-6",
54+
description: "这是世界观的前言,只是为了满足我某个群的某个群u的幻想罢了(里面初步介绍了八个问题的问题来源是什么,围绕着我的自制游戏进行~写得不好,欢迎批评!",
4955
tags: ["世界观", "小说"]
5056
},
5157
{
5258
id: 7,
5359
name: "MegalodonLanguage",
5460
title: "自制编程语言——巨齿鲨语言",
5561
date: "2025-5-9",
62+
description: "我的自制语言!巨齿鲨语言!这是一门编程语言,皆在为又想要Rust的那种没有gc但是内存超级安全,适合写底层。但是却没有Rust那么抽象的语法的一门新语言!",
5663
tags: ["编程"]
5764
},
5865
{
5966
id: 8,
6067
name: "MegalodonGrammer",
6168
title: "巨齿鲨语言——语法介绍",
6269
date: "2025-5-16",
70+
description: "自制语言的语法介绍!这只是一个初步的构想罢了~",
6371
tags: ["编程"]
6472
},
6573
{
6674
id: 9,
6775
name: "MegalodonKeywords",
6876
title: "巨齿鲨语言——关键字介绍",
6977
date: "2025-5-17",
78+
description: "这是关键字介绍,介绍了巨齿鲨语言里的所有关键字。各位可以来看看~",
7079
tags: ["编程"]
7180
}
7281
]
@@ -106,6 +115,12 @@ const friendlinks: FriendlinkType[] = [
106115
name: '米露小窝',
107116
description: '放弃个性,就和死了没什么区别',
108117
url: 'https://milu.ink',
118+
},
119+
{
120+
avatar: avatarMap['Hill233.jpg'],
121+
name: 'Hill233の小窝',
122+
description: '只是一个普普通通的 blog',
123+
url: 'https://hill233.top',
109124
}
110125
]
111126
export {

src/views/Home.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ watch(() => route.query, () => {
4444
<router-link :to="'/article/' + (article.id)">
4545
<div class="article">
4646
<p class="article-title">{{article.title}}</p>
47-
<p class="article-date">{{article.date}}</p><br><br>
47+
<p class="article-date">{{article.date}}</p><hr>
48+
<p style="text-indent: 2em">{{article.description}}</p><br><br><br>
4849
<p class="article-tag"><el-icon size="30" color="black" style="vertical-align: middle"><List /></el-icon>&nbsp;&nbsp;<span v-for="tag in article.tags" :key="tag" class="inline-code" style="vertical-align: middle">{{tag}}</span></p>
4950
</div>
5051
</router-link>
@@ -84,7 +85,7 @@ watch(() => route.query, () => {
8485
min-height: 200px;
8586
flex-shrink: 0;
8687
border-radius: 20px;
87-
padding: 25px;
88+
padding: 20px;
8889
background: linear-gradient(to right bottom, rgba(234, 125, 35, 0.3), rgba(154, 87, 222, 0.4));
8990
color: black;
9091
transition: all 0.2s;
@@ -94,11 +95,12 @@ watch(() => route.query, () => {
9495
}
9596
.article-title {
9697
width: 100%;
97-
font-size: 40px;
98+
font-size: 30px;
99+
font-weight: bold;
98100
}
99101
.article-date {
100102
width: 100%;
101-
font-size: 30px;
103+
font-size: 24px;
102104
}
103105
.article-tag {
104106
width: 100%;
@@ -107,10 +109,10 @@ watch(() => route.query, () => {
107109
@media screen and (max-width: 768px) {
108110
min-height: 150px;
109111
.article-title {
110-
font-size: 30px;
112+
font-size: 24px;
111113
}
112114
.article-date {
113-
font-size: 20px;
115+
font-size: 16px;
114116
}
115117
.article-tag {
116118
font-size: 20px;

src/views/Left.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ function getTags() {
3333
<router-link :to="'/article/' + (articles.length)">
3434
<div class="article">
3535
<ul>
36-
<li>&nbsp;&nbsp;&nbsp;&nbsp;{{articles[articles.length - 1].title}}</li>
37-
<li>&nbsp;&nbsp;&nbsp;&nbsp;{{articles[articles.length - 1].date}}</li>
36+
<li class="article-title">{{articles[articles.length - 1].title}}</li>
37+
<li>{{articles[articles.length - 1].date}}</li>
3838
<li><el-icon size="30" color="black" style="vertical-align: middle"><List /></el-icon>&nbsp;&nbsp;<span v-for="tag in articles[articles.length - 1].tags" :key="tag" class="inline-code" style="vertical-align: middle">{{tag}}</span></li>
3939
</ul>
4040
</div>
@@ -94,6 +94,9 @@ function getTags() {
9494
list-style: none;
9595
}
9696
}
97+
.article-title {
98+
font-weight: bold;
99+
}
97100
}
98101
#left-footer {
99102
padding: 20px;
@@ -102,5 +105,9 @@ function getTags() {
102105
width: calc(100% - 80px);
103106
margin: 20px 0;
104107
}
108+
h4 {
109+
font-weight: normal;
110+
color: #404040;
111+
}
105112
}
106113
</style>

src/views/pages/7-MegalodonLanguage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const code_PkgJSON = `{
1717
"license": "MIT",
1818
"homepage": "https://github.com/Megalodon/MGLanguage",
1919
"author": "Megalodon",
20-
"version": "+0.4.6",
20+
"mglversion": "+0.4.6",
2121
"source": "https://github.com/Megalodon/MGLanguage",
2222
"dependencies": [
2323
{
@@ -115,7 +115,7 @@ const code_PkgJSON = `{
115115
<td>空</td>
116116
</tr>
117117
<tr>
118-
<td><code data="inline">version</code></td>
118+
<td><code data="inline">mglversion</code></td>
119119
<td>支持的mgl版本</td>
120120
<td>latest</td>
121121
</tr>

0 commit comments

Comments
 (0)