Skip to content

Commit 59fb935

Browse files
committed
auto push
1 parent bbf2028 commit 59fb935

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

src/logic/MyLogic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const friendlinks: FriendlinkType[] = [
9292
avatar: avatarMap['WolfYang.jpg'],
9393
name: '阳帆',
9494
description: '黄鹤一去不复返,白云千载空悠悠',
95-
url: 'https://wolfyang.fan',
95+
url: 'https://blog.wolfyang.fan',
9696
},
9797
{
9898
avatar: avatarMap['Milu.jpg'],

src/views/About.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
<p>好了!期待各位来为我捧场噢!</p>
1717

18+
<p>喵喵喵!如果你像添加友链的话,只需要从右侧随便哪个地方,找到我并且私聊我,我会和你详细说明我添加友链的原则的!在博客上就暂时不说啦~<br>
19+
呜呜呜,由于本博客的确用的是免费github pages域名,既然如此,那我添加友链的要求肯定会小很多的,同时我也非常欢迎各位来扩列嗷嗷嗷~~</p>
20+
1821
<p>以下是我的梦想列表(虽然还有部分没有实现啦!):</p>
1922

2023
<ul>

src/views/Right.vue

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ function imgTransitionEnd() {
2727
<div id="right">
2828
<img id="avatar" ref="ava" @click="rotateImg" @transitionend="imgTransitionEnd" src="@/assets/img/avatar.jpg" alt="avatar">
2929
<div id="across">
30-
<a href="https://github.com/xphost008" target="_blank"><img src="@/assets/img/github.svg" alt="github"></a>
31-
<a href="https://afdian.com/a/xphost" target="_blank"><img src="@/assets/img/afdian.ico" alt="爱发电"></a>
32-
<a href="https://space.bilibili.com/3546639830616204" target="_blank"><img src="@/assets/img/bilibili.ico" alt="bilibili"></a>
30+
<a title="Github" href="https://github.com/xphost008" target="_blank"><img src="@/assets/img/github.svg" alt="github"></a>
31+
<a title="爱发电" href="https://afdian.com/a/xphost" target="_blank"><img src="@/assets/img/afdian.ico" alt="爱发电"></a>
32+
<a title="Bilibili" href="https://space.bilibili.com/3546639830616204" target="_blank"><img src="@/assets/img/bilibili.ico" alt="bilibili"></a>
3333
</div>
3434
<div id="personal">
3535
<p>我爱这个世界,正如这个世界爱我一样</p>
@@ -60,10 +60,20 @@ function imgTransitionEnd() {
6060
z-index: 100;
6161
overflow: auto;
6262
#avatar {
63-
width: 200px;
64-
height: 200px;
63+
width: 100px;
64+
height: 100px;
65+
margin: 50px;
6566
border-radius: 50%;
66-
margin: 30px;
67+
@media screen and (max-width: 1120px) {
68+
width: 150px;
69+
height: 150px;
70+
margin: 40px;
71+
}
72+
@media screen and (max-width: 768px) {
73+
width: 200px;
74+
height: 200px;
75+
margin: 30px;
76+
}
6777
}
6878
#across {
6979
display: flex;
@@ -125,12 +135,5 @@ function imgTransitionEnd() {
125135
}
126136
}
127137
}
128-
@media screen and (min-width: 768px) {
129-
#avatar {
130-
width: 100px;
131-
height: 100px;
132-
margin: 50px;
133-
}
134-
}
135138
}
136139
</style>

0 commit comments

Comments
 (0)