Skip to content

Commit

Permalink
Merge remote-tracking branch 'skyhome/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
lonely-starry committed Apr 28, 2024
2 parents 6d1d116 + 65b5a72 commit 03d6dcf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ VITE_SITE_APPLE_LOGO = "/images/logo/apple-touch-icon.png" # Apple 端图标

# 简介文本
VITE_DESC_HELLO = "Hello World !"
VITE_DESC_TEXT = "Hi ! 欢迎来到我的主页"
VITE_DESC_TEXT = "Hi ! 一名喜欢折腾计算机与网络的“过客”,欢迎来到我的主页"
VITE_DESC_HELLO_OTHER = "Oops !"
VITE_DESC_TEXT_OTHER = "哎呀,这都被你发现了 (再点击一次可关闭)"
VITE_DESC_TEXT_OTHER = "哎呀,这都被你发现了 ! "

# 社交链接
## 请在 src/assets/socialLinks.json 文件中配置
Expand Down
4 changes: 2 additions & 2 deletions src/assets/siteLinks.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
},
{
"icon": "ImageRegular",
"name": "图床",
"link": "https://img.lonelyxm.com/"
"name": "图集",
"link": "https://pic.lonelyx.cn"
},
{
"icon": "Toolbox",
Expand Down
26 changes: 7 additions & 19 deletions src/components/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,19 @@
<Icon size="16">
<QuoteLeft />
</Icon>
<<<<<<< HEAD
<Transition name="fade" mode="out-in">
<div :key="descriptionText.hello + descriptionText.text" class="text">
<p>{{ descriptionText.hello }}</p>
<p>{{ descriptionText.text }}</p>
</div>
</Transition>
=======
<div class="text">
<p>{{ descriptionText.hello }}</p>
<p>{{ descriptionText.text }}</p>
</div>
>>>>>>> skyhome/dev
<Icon size="16">
<QuoteRight />
</Icon>
Expand Down Expand Up @@ -188,24 +195,5 @@ watch(
margin-top: 2.5rem;
}
}
.typewriter {
overflow: hidden;
white-space: nowrap;
display: inline-block;
overflow: hidden;
animation: typing 5s steps(100, start) 1;
/* 文字逐个出现 */
}
/* 打字动画 */
@keyframes typing {
from {
width: 0;
}
to {
width: 130%;
}
}
}
</style>

0 comments on commit 03d6dcf

Please sign in to comment.