Commit 043890ce by doszhang

dos

parent c9604cf5
......@@ -126,8 +126,8 @@ body {
width: 71px;
height: 68px;
left: 100px;
animation: leaves 10s ease infinite;
-webkit-animation: leaves 10s ease infinite;
animation: luo 10s ease infinite;
-webkit-animation: luo 10s ease infinite;
}
.leaves-2 {
......@@ -135,8 +135,8 @@ body {
width: 56px;
height: 44px;
left: 250px;
animation: leaves 7s 3s ease infinite;
-webkit-animation: leaves 7s 3s ease infinite;
animation: luo 7s 3s ease infinite;
-webkit-animation: luo 7s 3s ease infinite;
}
.leaves-3 {
......@@ -144,8 +144,8 @@ body {
width: 58px;
height: 37px;
left: 470px;
animation: leaves 8s 5s ease infinite;
-webkit-animation: leaves 8s 5s ease infinite;
animation: luo 8s 5s ease infinite;
-webkit-animation: luo 8s 5s ease infinite;
}
......@@ -207,6 +207,30 @@ body {
}
}
@-webkit-keyframes luo {
0% {
top: -1%;
transform: rotate(-60deg);
}
100% {
top: 100%;
transform: rotate(60deg);
}
}
@keyframes luo {
0% {
top: -1%;
transform: rotate(-60deg);
}
100% {
top: 100%;
transform: rotate(60deg);
}
}
@keyframes updown {
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