Commit 7a64dcd7 by doszhang

dos

parent 484c93ee
......@@ -138,37 +138,38 @@ input::-webkit-input-placeholder {
}
.home-page .light1 {
animation: light 2s ease infinite;
-webkit-animation: light 2s ease infinite;
animation: light 3s ease-in-out infinite;
-webkit-animation: light 3s ease-in-out infinite;
}
.home-page .light2 {
animation: light 2s 4s ease infinite;
-webkit-animation: light 2s 4s ease infinite;
animation: light 3s 1s ease-in-out infinite;
-webkit-animation: light 3s 1s ease-in-out infinite;
}
.home-page .light3 {
animation: light 2s 6s ease infinite;
-webkit-animation: light 2s 6s ease infinite;
animation: light 3s 2s ease-in-out infinite;
-webkit-animation: light 3s 2s ease-in-out infinite;
}
@keyframes light {
0% {
opacity: 0;
transform: translateY(50%);
transform: translateY(20%);
}
20% {
3% {
opacity: 1;
}
80% {
30% {
opacity: 1;
}
33%,
100% {
opacity: 0;
transform: translateY(-50%);
transform: translateY(-20%);
}
}
......
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