Skip to content

Commit

Permalink
111
Browse files Browse the repository at this point in the history
  • Loading branch information
Hi-PWC committed Oct 17, 2024
1 parent 17ed42b commit 21c0040
Show file tree
Hide file tree
Showing 58 changed files with 21,800 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CSS/animate.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CSS/aos.css

Large diffs are not rendered by default.

6,757 changes: 6,757 additions & 0 deletions CSS/bootstrap.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions CSS/bootstrap.min.css

Large diffs are not rendered by default.

45 changes: 45 additions & 0 deletions CSS/meteor_shower.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
.stars {
margin: 0 auto;
position: fixed;
top: 0;
z-index: 2;
}

.star, .r{
display: block;
width: 1px;
background: transparent;
position: absolute;
opacity: 0;
/*过渡动画*/
animation: star-fall 3s linear;
}

.star:after, .r:after {
content: '';
display: block;
border: 0px solid #fff;
border-width: 0px 90px 2px 90px;
border-color: transparent transparent transparent rgba(255, 255, 255, .5);
box-shadow: 0 0 1px 0 rgba(255, 255, 255, .1);
/*变形*/
transform: rotate(225deg) translate3d(1px, 3px, 0);
transform-origin: 0% 100%;
}

@keyframes star-fall {
0% {
opacity: 0;
transform: scale(0.5) translate3d(0, 0, 0);
}

50% {
opacity: 1;
transform: translate3d(200px, 200px, 0);
}

100% {
opacity: 0;
transform: scale(1.2) translate3d(300px, 300px, 0);
}
}
108 changes: 108 additions & 0 deletions CSS/personal-info-animate.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
@-webkit-keyframes bounce {

0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}

40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}

60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}


@keyframes bounce {

0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}

40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}

60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}



@keyframes blink {
50% {
opacity: 0;
}
}

@-webkit-keyframes blink {
50% {
opacity: 0;
}
}

@-webkit-keyframes pulsate {
0% {
transform: scale(0.6, 0.6);
opacity: 0.0;
}

50% {
opacity: 1.0;
}

100% {
transform: scale(1, 1);
opacity: 0.0;
}
}

@keyframes pulsate {
0% {
transform: scale(0.6, 0.6);
opacity: 0.0;
}

50% {
opacity: 1.0;
}

100% {
transform: scale(1, 1);
opacity: 0.0;
}
}

@-webkit-keyframes animate-positive {
0% {
width: 0%;
}
}

@keyframes animate-positive {
0% {
width: 0%;
}
}
Loading

0 comments on commit 21c0040

Please sign in to comment.