|
|
@ -35,13 +35,13 @@ |
|
|
|
<h1>sunfree</h1> |
|
|
|
<div class="cardText"></div> |
|
|
|
<div class="button-group"> |
|
|
|
<a-button shape="circle" size="large" @click="gravatarClick"> |
|
|
|
<GravatarLined /> |
|
|
|
<a-button shape="circle" size="large" @click="cravatarClick" > |
|
|
|
<CravatarLined style="color: red;"/> |
|
|
|
</a-button> |
|
|
|
<a-button shape="circle" size="large" @click="qqClick"> |
|
|
|
<QQLined /> |
|
|
|
</a-button> |
|
|
|
<a-button shape="circle" size="large"> |
|
|
|
<a-button shape="circle" size="large" @click="wechatClick"> |
|
|
|
<WechatLined /> |
|
|
|
</a-button> |
|
|
|
<a-button shape="circle" size="large" @click="musicClick"> |
|
|
@ -140,7 +140,7 @@ |
|
|
|
import { h, reactive, ref, nextTick } from 'vue'; |
|
|
|
import { MenuProps } from 'ant-design-vue'; |
|
|
|
import { HomeOutlined, HighlightOutlined, ProfileOutlined, CameraOutlined, UsergroupDeleteOutlined, DownCircleOutlined } from '@ant-design/icons-vue'; |
|
|
|
import { MusicLined, EmailLined, QQLined, WechatLined, GravatarLined, GitHubLined } from "@/assets" |
|
|
|
import { MusicLined, EmailLined, QQLined, WechatLined, GravatarLined, GitHubLined,CravatarLined } from "@/assets" |
|
|
|
import Typed from 'typed.js'; |
|
|
|
import { onMounted, watch } from 'vue'; |
|
|
|
import type { CSSProperties } from 'vue'; |
|
|
@ -458,12 +458,15 @@ const onSearch = (searchValue: string) => { |
|
|
|
|
|
|
|
const img = ref("https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png") |
|
|
|
|
|
|
|
const gravatarClick = () => { |
|
|
|
window.open("https://cn.gravatar.org/") |
|
|
|
const cravatarClick = () => { |
|
|
|
window.open("https://cravatar.cn/") |
|
|
|
} |
|
|
|
const qqClick=()=>{ |
|
|
|
window.open("/qqcode",'_blank') |
|
|
|
} |
|
|
|
const wechatClick=()=>{ |
|
|
|
window.open("/wechatcode",'_blank') |
|
|
|
} |
|
|
|
const musicClick=()=>{ |
|
|
|
window.open("https://music.163.com/#/playlist?id=160266689") |
|
|
|
} |
|
|
|