This commit is contained in:
底层用户 2021-10-01 21:42:30 +08:00
parent 0579e3b0e9
commit 2a6eabac95
3 changed files with 46 additions and 2 deletions

View File

@ -2,4 +2,43 @@
<strong><h2>無名の主页 </h2></strong>
一个小主页,原来的看够了,重新弄一个
</p>
<details>
<summary>更新日志</summary>
**V1.2.02021.09.27**
- 新增 点击左侧简介弹出更多页面
- 新增 时间胶囊 时光进度条
- 优化 移动端动画及细节
- 修复 星期进度条显示错误
</details>
### 功能
- [x] 站点简介
- [x] 一言展示
- [x] 年月日及时间展示
- [x] 天气信息
- [x] 时间胶囊 *时光进度条*
* [ ] 音乐插件
* [ ] 没想好
### 插件
* [Bootstrap](https://getbootstrap.com/)
* [iziToast](https://izitoast.marcelodolza.com/)
* [iconfont](https://www.iconfont.cn/)
* [Font Awesome](https://fontawesome.com/)
* [vue.js](https://v3.vuejs.org/)
* [jQuery](https://jquery.com/)
### API
* [JsonBird](https://bird.ioliu.cn/)
* [天气 API](https://www.tianqiapi.com/)
* [Hitokoto - 一言](https://hitokoto.cn/)
<a title="SSL" target="_blank" href="https://myssl.com/seal/detail?domain=blog.imsyy.top"><img src="https://img.shields.io/badge/MySSL-安全认证-brightgreen"></a>&nbsp;<a title="CDN" target="_blank" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral"><img src="https://img.shields.io/badge/CDN-%E5%8F%88%E6%8B%8D%E4%BA%91-blue"></a>&nbsp;<a title="beian" target="_blank" href="https://beian.miit.gov.cn/"><img src="https://img.shields.io/badge/%E8%B1%ABICP%E5%A4%87-20013231--2%E5%8F%B7-important"></a>&nbsp;<a title="Copyright" target="_blank" href="https://imsyy.top/"><img src="https://img.shields.io/badge/Copyright%20%C2%A9%202020--2021-%E7%84%A1%E5%90%8D-red"></a>

View File

@ -207,6 +207,7 @@
}
/*切换动画*/
/*
.hitokoto,
.time,
.link-card,
@ -217,12 +218,16 @@
-o-animation: fade-in 0.5s;
-ms-animation: fade-in 0.5s;
}
*/
.logo,
.line,
.main-img,
.social,
.close,
.hitokoto,
.time,
.link-card,
.message,
#link-text {
animation: fade 0.5;
-webkit-animation: fade 0.5s;

View File

@ -22,7 +22,7 @@ var vm = new Vue({
var myHours = myDate.getHours(); // 获取当前小时(0-23)
var myMinu = myDate.getMinutes(); // 获取当前分钟(0-59)
var mySec = myDate.getSeconds(); // 获取当前秒数(0-59)
var myWeek = myDate.getDay() -1; //获取当前星期几(0-6)
var myWeek = myDate.getDay() - 1; //获取当前星期几(0-6)
this.hour = myHours;
this.year = myYear;