Commit 88153f06 by doszhang

dos

parent 178f0f1d
......@@ -121,6 +121,29 @@ body {
-webkit-animation: boat 1s linear infinite;
}
.page3 .cloud2 {
animation: cloud2 5s linear infinite;
-webkit-animation: cloud2 5s linear infinite;
}
@keyframes cloud2 {
0% {
transform: translateY(0);
opacity: 0;
}
50% {
transform: translateY(-65px);
opacity: 1;
}
90%,
100% {
transform: translateY(-130px);
opacity: 0;
}
}
@keyframes boat {
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