fix: 修改二维码图片

This commit is contained in:
xugaoyi 2022-03-08 17:00:16 +08:00
parent dff4436a89
commit b49d9d6a78
2 changed files with 9 additions and 16 deletions

View File

@ -29,10 +29,7 @@ const htmlModule: VdoingThemeConfig['htmlModules'] = {
font-weight: bold;
margin: 0 0 8px 0;
"></p>
<img src="https://cdn.jsdelivr.net/gh/xugaoyi/image_store@master/blog/扫码_搜索联合传播样式-标准色版.1wp8gd1mhjhc.jpg" style="width:100%;" />
<p>
<a href="https://game.xugaoyi.com" arget="_blank" > FC在线模拟器() <span><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" x="0px" y="0px" viewBox="0 0 100 100" width="15" height="15" class="icon outbound"><path fill="currentColor" d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"></path> <polygon fill="currentColor" points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"></polygon></svg> <span class="sr-only">(opens new window)</span></span></a>~
</br></br>
<img src="https://open.weixin.qq.com/qr/code?username=gh_0cf4b813918c" style="width:100%;" />
[<b></b>] <a href="https://game.xugaoyi.com" arget="_blank" ><span><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" x="0px" y="0px" viewBox="0 0 100 100" width="15" height="15" class="icon outbound"><path fill="currentColor" d="M18.8,85.1h56l0,0c2.2,0,4-1.8,4-4v-32h-8v28h-48v-48h28v-8h-32l0,0c-2.2,0-4,1.8-4,4v56C14.8,83.3,16.6,85.1,18.8,85.1z"></path> <polygon fill="currentColor" points="45.7,48.7 51.3,54.3 77.2,28.5 77.2,37.2 85.2,37.2 85.2,14.9 62.8,14.9 62.8,22.9 71.5,22.9"></polygon></svg> <span class="sr-only">(opens new window)</span></span></a>
</p>
</div>`,

View File

@ -46,36 +46,32 @@ web前端小学生
<img src='https://cdn.jsdelivr.net/gh/xugaoyi/image_store/blog/20200103123203.jpg' alt='本人照片' style="width:106px;"> -->
## 公众号
`有趣研究社`是本人对各种有趣的、好玩的、沙雕的创意和想法以在线小网站或者文章的形式表达出来比如80、90后朋友小时候玩的小霸王游戏机<https://game.xugaoyi.com>,还有更多好玩的等你去探索吧~
<img src="https://cdn.jsdelivr.net/gh/xugaoyi/image_store@master/blog/扫码_搜索联合传播样式-标准色版.1wp8gd1mhjhc.jpg" style="width:370px;" />
<!-- <img src="https://cdn.jsdelivr.net/gh/xugaoyi/image_store@master/blog/qrcode.zdqv9mlfc0g.jpg" style="width:30%;" /> -->
## 前端学习
关注上面的公众号,回复`前端资源`,即可获取这些 [前端学习资源](https://github.com/xugaoyi/blog-gitalk-comment/wiki/Front-end-Study)。
<br/>
<img src="https://open.weixin.qq.com/qr/code?username=gh_0cf4b813918c" style="width:100px;" />
关注公众号,回复`前端资源`,即可获取这些 [前端学习资源](https://github.com/xugaoyi/blog-gitalk-comment/wiki/Front-end-Study)。
## :email: 联系
- WeChat or QQ: <a :href="qqUrl" class='qq'>894072666</a>
- WeChat or QQ: <a :href="qqUrl" class='qq'>{{ QQ }}</a>
- Email: <a href="mailto:894072666@qq.com">894072666@qq.com</a>
- GitHub: <https://github.com/xugaoyi>
- Vdoing主题文档<https://doc.xugaoyi.com>
- Vdoing交流QQ群694387113
<script>
export default {
data(){
return {
qqUrl: 'tencent://message/?uin=894072666&Site=&Menu=yes'
QQ: '894072666',
qqUrl: `tencent://message/?uin=${this.QQ}&Site=&Menu=yes`
}
},
mounted(){
const flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
if(flag){
this.qqUrl = 'mqqwpa://im/chat?chat_type=wpa&uin=894072666&version=1&src_type=web&web_src=oicqzone.com'
this.qqUrl = `mqqwpa://im/chat?chat_type=wpa&uin=${this.QQ}&version=1&src_type=web&web_src=oicqzone.com`
}
}
}