Skip to content

Commit dcc27b0

Browse files
author
eddie
committed
Site updated: 2023-01-17 16:35:31
1 parent f9b226e commit dcc27b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+284
-97
lines changed

about/index.html

+2-2
Large diffs are not rendered by default.

archives/2021/05/index.html

+3-3
Large diffs are not rendered by default.

archives/2021/06/index.html

+3-3
Large diffs are not rendered by default.

archives/2021/07/index.html

+3-3
Large diffs are not rendered by default.

archives/2021/11/index.html

+3-3
Large diffs are not rendered by default.

archives/2021/index.html

+3-3
Large diffs are not rendered by default.

archives/2022/07/index.html

+3-3
Large diffs are not rendered by default.

archives/2022/index.html

+3-3
Large diffs are not rendered by default.

archives/2023/01/index.html

+3-3
Large diffs are not rendered by default.

archives/2023/index.html

+3-3
Large diffs are not rendered by default.

archives/index.html

+3-3
Large diffs are not rendered by default.

archives/page/2/index.html

+3-3
Large diffs are not rendered by default.

categories/index.html

+2-2
Large diffs are not rendered by default.

categories/kubernetes/index.html

+3-3
Large diffs are not rendered by default.

categories/linux/index.html

+3-3
Large diffs are not rendered by default.

categories/nginx/index.html

+3-3
Large diffs are not rendered by default.

css/index.css

+117
Original file line numberDiff line numberDiff line change
@@ -3753,6 +3753,123 @@ h1.page-title + .tag-cloud-list {
37533753
#nav .site-page:not(.child):hover:after {
37543754
width: 100%;
37553755
}
3756+
.loading-bg {
3757+
display: -webkit-box;
3758+
display: -moz-box;
3759+
display: -webkit-flex;
3760+
display: -ms-flexbox;
3761+
display: box;
3762+
display: flex;
3763+
width: 100%;
3764+
height: 100%;
3765+
position: fixed;
3766+
background: var(--anzhiyu-card-bg);
3767+
z-index: 1001;
3768+
opacity: 1;
3769+
-ms-filter: none;
3770+
filter: none;
3771+
-webkit-transition: 0.3s;
3772+
-moz-transition: 0.3s;
3773+
-o-transition: 0.3s;
3774+
-ms-transition: 0.3s;
3775+
transition: 0.3s;
3776+
}
3777+
#loading-box .loading-img {
3778+
width: 100px;
3779+
height: 100px;
3780+
border-radius: 50%;
3781+
margin: auto;
3782+
border: 4px solid #f0f0f2;
3783+
-webkit-animation-duration: 0.3s;
3784+
-moz-animation-duration: 0.3s;
3785+
-o-animation-duration: 0.3s;
3786+
-ms-animation-duration: 0.3s;
3787+
animation-duration: 0.3s;
3788+
-webkit-animation-name: loadingAction;
3789+
-moz-animation-name: loadingAction;
3790+
-o-animation-name: loadingAction;
3791+
-ms-animation-name: loadingAction;
3792+
animation-name: loadingAction;
3793+
-webkit-animation-iteration-count: infinite;
3794+
-moz-animation-iteration-count: infinite;
3795+
-o-animation-iteration-count: infinite;
3796+
-ms-animation-iteration-count: infinite;
3797+
animation-iteration-count: infinite;
3798+
-webkit-animation-direction: alternate;
3799+
-moz-animation-direction: alternate;
3800+
-o-animation-direction: alternate;
3801+
-ms-animation-direction: alternate;
3802+
animation-direction: alternate;
3803+
}
3804+
#loading-box .loading-image-dot {
3805+
width: 30px;
3806+
height: 30px;
3807+
background: #6bdf8f;
3808+
position: absolute;
3809+
border-radius: 50%;
3810+
border: 6px solid #fff;
3811+
top: 50%;
3812+
left: 50%;
3813+
-webkit-transform: translate(18px, 24px);
3814+
-moz-transform: translate(18px, 24px);
3815+
-o-transform: translate(18px, 24px);
3816+
-ms-transform: translate(18px, 24px);
3817+
transform: translate(18px, 24px);
3818+
}
3819+
#loading-box.loaded .loading-bg {
3820+
opacity: 0;
3821+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
3822+
filter: alpha(opacity=0);
3823+
z-index: -1000;
3824+
}
3825+
@-moz-keyframes loadingAction {
3826+
0% {
3827+
opacity: 1;
3828+
-ms-filter: none;
3829+
filter: none;
3830+
}
3831+
100% {
3832+
opacity: 0.4;
3833+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
3834+
filter: alpha(opacity=40);
3835+
}
3836+
}
3837+
@-webkit-keyframes loadingAction {
3838+
0% {
3839+
opacity: 1;
3840+
-ms-filter: none;
3841+
filter: none;
3842+
}
3843+
100% {
3844+
opacity: 0.4;
3845+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
3846+
filter: alpha(opacity=40);
3847+
}
3848+
}
3849+
@-o-keyframes loadingAction {
3850+
0% {
3851+
opacity: 1;
3852+
-ms-filter: none;
3853+
filter: none;
3854+
}
3855+
100% {
3856+
opacity: 0.4;
3857+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
3858+
filter: alpha(opacity=40);
3859+
}
3860+
}
3861+
@keyframes loadingAction {
3862+
0% {
3863+
opacity: 1;
3864+
-ms-filter: none;
3865+
filter: none;
3866+
}
3867+
100% {
3868+
opacity: 0.4;
3869+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
3870+
filter: alpha(opacity=40);
3871+
}
3872+
}
37563873
#pagination .pagination {
37573874
margin-top: 20px;
37583875
text-align: center;

css/progress_bar.css

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.pace {
2+
-webkit-pointer-events: none;
3+
pointer-events: none;
4+
-webkit-user-select: none;
5+
-moz-user-select: none;
6+
user-select: none;
7+
z-index: 2000;
8+
position: fixed;
9+
margin: auto;
10+
top: 10px;
11+
left: 0;
12+
right: 0;
13+
height: 8px;
14+
border-radius: 8px;
15+
width: 4rem;
16+
background: #eaecf2;
17+
border: 1px #e3e8f7;
18+
overflow: hidden;
19+
}
20+
21+
.pace-inactive .pace-progress {
22+
opacity: 0;
23+
transition: 0.3s ease-in;
24+
}
25+
26+
.pace .pace-progress {
27+
-webkit-box-sizing: border-box;
28+
-moz-box-sizing: border-box;
29+
-ms-box-sizing: border-box;
30+
-o-box-sizing: border-box;
31+
box-sizing: border-box;
32+
-webkit-transform: translate3d(0, 0, 0);
33+
-moz-transform: translate3d(0, 0, 0);
34+
-ms-transform: translate3d(0, 0, 0);
35+
-o-transform: translate3d(0, 0, 0);
36+
transform: translate3d(0, 0, 0);
37+
max-width: 200px;
38+
position: absolute;
39+
z-index: 2000;
40+
display: block;
41+
top: 0;
42+
right: 100%;
43+
height: 100%;
44+
width: 100%;
45+
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
46+
animation: gradient 1.5s ease infinite;
47+
background-size: 200%;
48+
}
49+
50+
.pace.pace-inactive {
51+
opacity: 0;
52+
transition: 0.3s;
53+
top: -8px;
54+
}
55+
@keyframes gradient {
56+
0% {
57+
background-position: 0% 50%;
58+
}
59+
50% {
60+
background-position: 100% 50%;
61+
}
62+
100% {
63+
background-position: 0% 50%;
64+
}
65+
}
66+
67+
.loading-img {
68+
background: url(https://npm.elemecdn.com/[email protected]/img/avatar.webp) no-repeat center center;
69+
background-size: cover;
70+
}

index.html

+3-3
Large diffs are not rendered by default.

page/2/index.html

+3-3
Large diffs are not rendered by default.

posts/1ebd6834.html

+2-2
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)