Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 7cd555f

Browse files
author
底层用户
committed
first commit
0 parents  commit 7cd555f

30 files changed

+3673
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vscode

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 imsyy
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<p>
2+
<strong><h2>Snavigation</h2></strong>
3+
一个简约的起始页
4+
</p>
5+
6+
![Snavigation](https://img.imsyy.top/other/Snavigation.png)
7+
8+
>尚未完成
9+
10+
### Demo
11+
>由于 CDN 缓存原因,查看最新效果可能需要 `Ctrl` + `F5` 强制刷新浏览器缓存
12+
13+
- [Snavigation](https://nav.imsyy.top)
14+
15+
### 功能
16+
17+
- [x] 载入动画
18+
- [x] 搜索引擎切换
19+
- [x] 时间及天气显示
20+
- [x] 快捷方式自定义
21+
- [x] 网站背景自定义
22+
- [x] 数据备份及恢复
23+
- [x] 移动端适配
24+
* [ ] 还没想好呢
25+
26+
### 插件
27+
28+
* [iziToast](https://izitoast.marcelodolza.com/)
29+
* [Iconfont](https://www.iconfont.cn/)
30+
* [jQuery](https://jquery.com/)
31+
32+
### API
33+
34+
* [小歪 API](https://api.ixiaowai.cn/)
35+
* [天气 API](https://www.tianqiapi.com/)
36+
37+
### 鸣谢
38+
39+
本站部分内容参考自
40+
41+
* [青柠起始页](https://limestart.cn/)
42+
* [sou2](https://github.com/yeetime/sou2/)
43+
44+
<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://cdnjs.com/"><img src="https://img.shields.io/badge/CDN-Cloudflare-blue"></a>&nbsp;<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>

css/animation.css

Lines changed: 202 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
/*渐入动画*/
2+
@keyframes fade {
3+
0% {
4+
opacity: 0;
5+
}
6+
7+
100% {
8+
opacity: 1;
9+
}
10+
}
11+
12+
@-webkit-keyframes fade {
13+
0% {
14+
opacity: 0;
15+
}
16+
17+
100% {
18+
opacity: 1;
19+
}
20+
}
21+
22+
@-moz-keyframes fade {
23+
0% {
24+
opacity: 0;
25+
}
26+
27+
100% {
28+
opacity: 1;
29+
}
30+
}
31+
32+
@-o-keyframes fade {
33+
0% {
34+
opacity: 0;
35+
}
36+
37+
100% {
38+
opacity: 1;
39+
}
40+
}
41+
42+
/*文字闪烁*/
43+
@-webkit-keyframes fadenum {
44+
45+
0% {
46+
opacity: 1;
47+
}
48+
49+
50% {
50+
opacity: 0;
51+
}
52+
53+
100% {
54+
opacity: 1;
55+
}
56+
57+
}
58+
59+
@-moz-keyframes fadenum {
60+
61+
0% {
62+
opacity: 1;
63+
}
64+
65+
50% {
66+
opacity: 0;
67+
}
68+
69+
100% {
70+
opacity: 1;
71+
}
72+
73+
}
74+
75+
@-o-keyframes fadenum {
76+
77+
0% {
78+
opacity: 1;
79+
}
80+
81+
50% {
82+
opacity: 0;
83+
}
84+
85+
100% {
86+
opacity: 1;
87+
}
88+
89+
}
90+
91+
@keyframes fadenum {
92+
93+
0% {
94+
opacity: 1;
95+
}
96+
97+
50% {
98+
opacity: 0;
99+
}
100+
101+
100% {
102+
opacity: 1;
103+
}
104+
105+
}
106+
107+
/*下沉动画*/
108+
@-moz-keyframes down {
109+
0% {
110+
opacity: 0;
111+
top: 44%;
112+
/* -webkit-transform: translateY(-25%);
113+
-moz-transform: translateY(-25%);
114+
-o-transform: translateY(-25%);
115+
-ms-transform: translateY(-25%);
116+
transform: translateY(-25%) */
117+
}
118+
119+
100% {
120+
opacity: 1;
121+
-ms-filter: none;
122+
filter: none;
123+
top: 46%;
124+
/* -webkit-transform: translateY(-20%);
125+
-moz-transform: translateY(-20%);
126+
-o-transform: translateY(-20%);
127+
-ms-transform: translateY(-20%);
128+
transform: translateY(-20%) */
129+
}
130+
}
131+
132+
@-webkit-keyframes down {
133+
0% {
134+
opacity: 0;
135+
top: 44%;
136+
/* -webkit-transform: translateY(-25%);
137+
-moz-transform: translateY(-25%);
138+
-o-transform: translateY(-25%);
139+
-ms-transform: translateY(-25%);
140+
transform: translateY(-25%) */
141+
}
142+
143+
100% {
144+
opacity: 1;
145+
-ms-filter: none;
146+
filter: none;
147+
top: 46%;
148+
/* -webkit-transform: translateY(-20%);
149+
-moz-transform: translateY(-20%);
150+
-o-transform: translateY(-20%);
151+
-ms-transform: translateY(-20%);
152+
transform: translateY(-20%) */
153+
}
154+
}
155+
156+
@-o-keyframes down {
157+
0% {
158+
opacity: 0;
159+
top: 44%;
160+
/* -webkit-transform: translateY(-25%);
161+
-moz-transform: translateY(-25%);
162+
-o-transform: translateY(-25%);
163+
-ms-transform: translateY(-25%);
164+
transform: translateY(-25%) */
165+
}
166+
167+
100% {
168+
opacity: 1;
169+
-ms-filter: none;
170+
filter: none;
171+
top: 46%;
172+
/* -webkit-transform: translateY(-20%);
173+
-moz-transform: translateY(-20%);
174+
-o-transform: translateY(-20%);
175+
-ms-transform: translateY(-20%);
176+
transform: translateY(-20%) */
177+
}
178+
}
179+
180+
@keyframes down {
181+
0% {
182+
opacity: 0;
183+
top: 44%;
184+
/* -webkit-transform: translateY(-25%);
185+
-moz-transform: translateY(-25%);
186+
-o-transform: translateY(-25%);
187+
-ms-transform: translateY(-25%);
188+
transform: translateY(-25%) */
189+
}
190+
191+
100% {
192+
opacity: 1;
193+
-ms-filter: none;
194+
filter: none;
195+
top: 46%;
196+
/* -webkit-transform: translateY(-20%);
197+
-moz-transform: translateY(-20%);
198+
-o-transform: translateY(-20%);
199+
-ms-transform: translateY(-20%);
200+
transform: translateY(-20%) */
201+
}
202+
}

css/firefox.css

Whitespace-only changes.

css/font.css

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
@font-face {
2+
font-family: "MiSans";
3+
src: url('../font/MiSans-Regular.woff') format('woff');
4+
}
5+
6+
@font-face {
7+
font-family: "iconfont";
8+
/* Project id 3222465 */
9+
src: url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.woff2?t=1647790391080') format('woff2'),
10+
url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.woff?t=1647790391080') format('woff'),
11+
url('//at.alicdn.com/t/font_3222465_kuwc8yy7j9g.ttf?t=1647790391080') format('truetype');
12+
}
13+
14+
.iconfont {
15+
font-family: "iconfont" !important;
16+
font-size: 16px;
17+
font-style: normal;
18+
-webkit-font-smoothing: antialiased;
19+
-moz-osx-font-smoothing: grayscale;
20+
}
21+
22+
.icon-tianjia-:before {
23+
content: "\e643";
24+
}
25+
26+
.icon-taobao:before {
27+
content: "\e755";
28+
}
29+
30+
.icon-jingdong:before {
31+
content: "\e618";
32+
}
33+
34+
.icon-xinlangweibo:before {
35+
content: "\e601";
36+
}
37+
38+
.icon-zhihu:before {
39+
content: "\e60a";
40+
}
41+
42+
.icon-github:before {
43+
content: "\e691";
44+
}
45+
46+
.icon-delete:before {
47+
content: "\e94d";
48+
}
49+
50+
.icon-home:before {
51+
content: "\e964";
52+
}
53+
54+
.icon-xiugai:before {
55+
content: "\e626";
56+
}
57+
58+
.icon-bilibilidonghua:before {
59+
content: "\e8b1";
60+
}
61+
62+
.icon-wangluo:before {
63+
content: "\e600";
64+
}
65+
66+
.icon-sougousousuo:before {
67+
content: "\e685";
68+
}
69+
70+
.icon-360sousuo:before {
71+
content: "\e64d";
72+
}
73+
74+
.icon-baidu:before {
75+
content: "\eb49";
76+
}
77+
78+
.icon-bing:before {
79+
content: "\eb4c";
80+
}
81+
82+
.icon-google:before {
83+
content: "\ebaa";
84+
}
85+
86+
.icon-shezhi:before {
87+
content: "\e634";
88+
}
89+
90+
.icon-sousuo:before {
91+
content: "\e635";
92+
}

0 commit comments

Comments
 (0)