Commit 9e56afd7 by doszhang

dos

parent af7c721a
......@@ -64,4 +64,41 @@ body {
video {
width: 100%;
height: 100%;
}
.arrow {
animation: arrow 2s linear infinite;
-webkit-animation: arrow 2s linear infinite;
}
@keyframes arrow {
0% {
transform: translateY(-50%);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
transform: translateY(50%);
}
}
@-webkit-keyframes arrow {
0% {
-webkit-transform: translateY(-50%);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
-webkit-transform: translateY(50%);
}
}
\ No newline at end of file
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