Commit c2bbfb38 by doszhang

dos

parent 59a7ce74
......@@ -81,6 +81,11 @@ input::-webkit-input-placeholder {
-webkit-animation: hand 2s linear infinite;
}
.btn-slideleft {
animation: slideLeft 1.5s linear infinite;
-webkit-animation: slideLeft 1.5s linear infinite;
}
input[name=customize] {
font-size: 22px;
color: #333;
......@@ -103,4 +108,26 @@ input[name=customize] {
50% {
-webkit-transform: translateX(5px);
}
}
@keyframes slideLeft {
0%,100% {
transform: translateX(5px);
opacity: 1;
}
50% {
transform: translateX(-5px);
opacity: 0;
}
}
@-webkit-keyframes slideLeft {
0%,100% {
-webkit-transform: translateX(5px);
opacity: 1;
}
50% {
-webkit-transform: translateX(-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