Commit fbe5f9db by doszhang

dos

parent c2bbfb38
...@@ -82,8 +82,13 @@ input::-webkit-input-placeholder { ...@@ -82,8 +82,13 @@ input::-webkit-input-placeholder {
} }
.btn-slideleft { .btn-slideleft {
animation: slideLeft 1.5s linear infinite; animation: hand 1.5s linear infinite;
-webkit-animation: slideLeft 1.5s linear infinite; -webkit-animation: hand 1.5s linear infinite;
}
.btn-slideleft {
animation: handReverse 1.5s linear infinite;
-webkit-animation: handReverse 1.5s linear infinite;
} }
input[name=customize] { input[name=customize] {
...@@ -110,24 +115,20 @@ input[name=customize] { ...@@ -110,24 +115,20 @@ input[name=customize] {
} }
} }
@keyframes slideLeft { @keyframes handReverse {
0%,100% { 0%,100% {
transform: translateX(5px); transform: translate(5px);
opacity: 1;
} }
50% { 50% {
transform: translateX(-5px); transform: translate(-5px);
opacity: 0;
} }
} }
@-webkit-keyframes slideLeft { @-webkit-keyframes handReverse {
0%,100% { 0%,100% {
-webkit-transform: translateX(5px); -webkit-transform: translate(5px);
opacity: 1;
} }
50% { 50% {
-webkit-transform: translateX(-5px); -webkit-transform: translate(-5px);
opacity: 0;
} }
} }
\ 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