Commit a5502b38 by doszhang

dos

parent ee209974
...@@ -74,6 +74,29 @@ video { ...@@ -74,6 +74,29 @@ video {
object-fit:contain; object-fit:contain;
} }
.indexup {
transform: translate3d(0,0,0);
animation: scfalse 1000s linear infinite;
-webkit-animation: scfalse 1000s linear infinite;
}
@keyframes scfalse {
0%,100% {
transform: scale(1);
}
50% {
transform: scale(1.0001);
}
}
@-webkit-keyframes scfalse {
0%,100% {
-webkit-transform: scale(1);
}
50% {
-webkit-transform: scale(1.0001);
}
}
@-webkit-keyframes bounce { @-webkit-keyframes bounce {
0%,20%,53%,80%,to { 0%,20%,53%,80%,to {
-webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
......
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