-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
底层用户
committed
Mar 21, 2022
0 parents
commit 7cd555f
Showing
30 changed files
with
3,673 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 imsyy | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<p> | ||
<strong><h2>Snavigation</h2></strong> | ||
一个简约的起始页 | ||
</p> | ||
|
||
![Snavigation](https://img.imsyy.top/other/Snavigation.png) | ||
|
||
>尚未完成 | ||
### Demo | ||
>由于 CDN 缓存原因,查看最新效果可能需要 `Ctrl` + `F5` 强制刷新浏览器缓存 | ||
- [Snavigation](https://nav.imsyy.top) | ||
|
||
### 功能 | ||
|
||
- [x] 载入动画 | ||
- [x] 搜索引擎切换 | ||
- [x] 时间及天气显示 | ||
- [x] 快捷方式自定义 | ||
- [x] 网站背景自定义 | ||
- [x] 数据备份及恢复 | ||
- [x] 移动端适配 | ||
* [ ] 还没想好呢 | ||
|
||
### 插件 | ||
|
||
* [iziToast](https://izitoast.marcelodolza.com/) | ||
* [Iconfont](https://www.iconfont.cn/) | ||
* [jQuery](https://jquery.com/) | ||
|
||
### API | ||
|
||
* [小歪 API](https://api.ixiaowai.cn/) | ||
* [天气 API](https://www.tianqiapi.com/) | ||
|
||
### 鸣谢 | ||
|
||
本站部分内容参考自 | ||
|
||
* [青柠起始页](https://limestart.cn/) | ||
* [sou2](https://github.com/yeetime/sou2/) | ||
|
||
<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> <a title="CDN" target="_blank" href="https://cdnjs.com/"><img src="https://img.shields.io/badge/CDN-Cloudflare-blue"></a> <a title="Copyright" target="_blank" href="https://imsyy.top/"><img src="https://img.shields.io/badge/Copyright%20%C2%A9%202020--2022-%E7%84%A1%E5%90%8D-red"></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
/*渐入动画*/ | ||
@keyframes fade { | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@-webkit-keyframes fade { | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@-moz-keyframes fade { | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@-o-keyframes fade { | ||
0% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
/*文字闪烁*/ | ||
@-webkit-keyframes fadenum { | ||
|
||
0% { | ||
opacity: 1; | ||
} | ||
|
||
50% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
|
||
} | ||
|
||
@-moz-keyframes fadenum { | ||
|
||
0% { | ||
opacity: 1; | ||
} | ||
|
||
50% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
|
||
} | ||
|
||
@-o-keyframes fadenum { | ||
|
||
0% { | ||
opacity: 1; | ||
} | ||
|
||
50% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
|
||
} | ||
|
||
@keyframes fadenum { | ||
|
||
0% { | ||
opacity: 1; | ||
} | ||
|
||
50% { | ||
opacity: 0; | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
} | ||
|
||
} | ||
|
||
/*下沉动画*/ | ||
@-moz-keyframes down { | ||
0% { | ||
opacity: 0; | ||
top: 44%; | ||
/* -webkit-transform: translateY(-25%); | ||
-moz-transform: translateY(-25%); | ||
-o-transform: translateY(-25%); | ||
-ms-transform: translateY(-25%); | ||
transform: translateY(-25%) */ | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-ms-filter: none; | ||
filter: none; | ||
top: 46%; | ||
/* -webkit-transform: translateY(-20%); | ||
-moz-transform: translateY(-20%); | ||
-o-transform: translateY(-20%); | ||
-ms-transform: translateY(-20%); | ||
transform: translateY(-20%) */ | ||
} | ||
} | ||
|
||
@-webkit-keyframes down { | ||
0% { | ||
opacity: 0; | ||
top: 44%; | ||
/* -webkit-transform: translateY(-25%); | ||
-moz-transform: translateY(-25%); | ||
-o-transform: translateY(-25%); | ||
-ms-transform: translateY(-25%); | ||
transform: translateY(-25%) */ | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-ms-filter: none; | ||
filter: none; | ||
top: 46%; | ||
/* -webkit-transform: translateY(-20%); | ||
-moz-transform: translateY(-20%); | ||
-o-transform: translateY(-20%); | ||
-ms-transform: translateY(-20%); | ||
transform: translateY(-20%) */ | ||
} | ||
} | ||
|
||
@-o-keyframes down { | ||
0% { | ||
opacity: 0; | ||
top: 44%; | ||
/* -webkit-transform: translateY(-25%); | ||
-moz-transform: translateY(-25%); | ||
-o-transform: translateY(-25%); | ||
-ms-transform: translateY(-25%); | ||
transform: translateY(-25%) */ | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-ms-filter: none; | ||
filter: none; | ||
top: 46%; | ||
/* -webkit-transform: translateY(-20%); | ||
-moz-transform: translateY(-20%); | ||
-o-transform: translateY(-20%); | ||
-ms-transform: translateY(-20%); | ||
transform: translateY(-20%) */ | ||
} | ||
} | ||
|
||
@keyframes down { | ||
0% { | ||
opacity: 0; | ||
top: 44%; | ||
/* -webkit-transform: translateY(-25%); | ||
-moz-transform: translateY(-25%); | ||
-o-transform: translateY(-25%); | ||
-ms-transform: translateY(-25%); | ||
transform: translateY(-25%) */ | ||
} | ||
|
||
100% { | ||
opacity: 1; | ||
-ms-filter: none; | ||
filter: none; | ||
top: 46%; | ||
/* -webkit-transform: translateY(-20%); | ||
-moz-transform: translateY(-20%); | ||
-o-transform: translateY(-20%); | ||
-ms-transform: translateY(-20%); | ||
transform: translateY(-20%) */ | ||
} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
@font-face { | ||
font-family: "MiSans"; | ||
src: url('../font/MiSans-Regular.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: "iconfont"; | ||
/* Project id 3222465 */ | ||
src: url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.woff2?t=1647790391080') format('woff2'), | ||
url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.woff?t=1647790391080') format('woff'), | ||
url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.ttf?t=1647790391080') format('truetype'); | ||
} | ||
|
||
.iconfont { | ||
font-family: "iconfont" !important; | ||
font-size: 16px; | ||
font-style: normal; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
.icon-tianjia-:before { | ||
content: "\e643"; | ||
} | ||
|
||
.icon-taobao:before { | ||
content: "\e755"; | ||
} | ||
|
||
.icon-jingdong:before { | ||
content: "\e618"; | ||
} | ||
|
||
.icon-xinlangweibo:before { | ||
content: "\e601"; | ||
} | ||
|
||
.icon-zhihu:before { | ||
content: "\e60a"; | ||
} | ||
|
||
.icon-github:before { | ||
content: "\e691"; | ||
} | ||
|
||
.icon-delete:before { | ||
content: "\e94d"; | ||
} | ||
|
||
.icon-home:before { | ||
content: "\e964"; | ||
} | ||
|
||
.icon-xiugai:before { | ||
content: "\e626"; | ||
} | ||
|
||
.icon-bilibilidonghua:before { | ||
content: "\e8b1"; | ||
} | ||
|
||
.icon-wangluo:before { | ||
content: "\e600"; | ||
} | ||
|
||
.icon-sougousousuo:before { | ||
content: "\e685"; | ||
} | ||
|
||
.icon-360sousuo:before { | ||
content: "\e64d"; | ||
} | ||
|
||
.icon-baidu:before { | ||
content: "\eb49"; | ||
} | ||
|
||
.icon-bing:before { | ||
content: "\eb4c"; | ||
} | ||
|
||
.icon-google:before { | ||
content: "\ebaa"; | ||
} | ||
|
||
.icon-shezhi:before { | ||
content: "\e634"; | ||
} | ||
|
||
.icon-sousuo:before { | ||
content: "\e635"; | ||
} |
Oops, something went wrong.
7cd555f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
7cd555f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: