Commit 87e0c518 by doszhang

dos

parent 36845237
...@@ -116,6 +116,23 @@ body { ...@@ -116,6 +116,23 @@ body {
-webkit-animation: water 1.5s linear infinite; -webkit-animation: water 1.5s linear infinite;
} }
.page2 .boat {
animation: boat 1s linear infinite;
-webkit-animation: boat 1s linear infinite;
}
@keyframes boat {
0%,
100% {
transform: translate(0, 0);
}
50% {
transform: translate(-10px, 10px);
}
}
@keyframes water { @keyframes water {
0%, 0%,
...@@ -124,7 +141,7 @@ body { ...@@ -124,7 +141,7 @@ body {
} }
50% { 50% {
transform: translate(10px, -10px); transform: translate(20px, -20px);
} }
} }
......
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