Commit 94065dbd by doszhang

dos

parent e19441f7
......@@ -137,6 +137,41 @@ input::-webkit-input-placeholder {
-webkit-animation: homeScale 1s 0.6s ease-out forwards;
}
.home-page .light1 {
animation: light 2s ease infinite;
-webkit-animation: light 2s ease infinite;
}
.home-page .light2 {
animation: light 2s 1.3s ease infinite;
-webkit-animation: light 2s 1.3s ease infinite;
}
.home-page .light3 {
animation: light 2s 3.3s ease infinite;
-webkit-animation: light 2s 3.3s ease infinite;
}
@keyframes light {
0% {
opacity: 0;
transform: translateY(50%);
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
transform: translateY(-50%);
}
}
@keyframes homeScale {
0% {
transform: scale(1) translateY(0) translateX(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment