Commit 740d4f35 by doszhang

dos

parent 00734fd4
...@@ -261,8 +261,8 @@ input::-webkit-input-placeholder { ...@@ -261,8 +261,8 @@ input::-webkit-input-placeholder {
} }
.flagadd.animate { .flagadd.animate {
animation: flagadd 1s ease-in forwards; animation: flagadd 2s ease-in forwards;
-webkit-animation: flagadd 1s ease-in forwards; -webkit-animation: flagadd 2s ease-in forwards;
} }
@keyframes flagadd { @keyframes flagadd {
...@@ -272,7 +272,7 @@ input::-webkit-input-placeholder { ...@@ -272,7 +272,7 @@ input::-webkit-input-placeholder {
} }
100% { 100% {
transform: translateY(100%); transform: translateY(-100%);
opacity: 0; opacity: 0;
} }
} }
......
...@@ -738,7 +738,7 @@ function addCustomizeFlag() { ...@@ -738,7 +738,7 @@ function addCustomizeFlag() {
$('.flagadd').show().addClass('animate'); $('.flagadd').show().addClass('animate');
setTimeout(function () { setTimeout(function () {
$('.flagadd').removeClass('animate'); $('.flagadd').removeClass('animate');
}, 1000); }, 2000);
if (firstChooseFlag) { if (firstChooseFlag) {
$('.checked-flag-list').css('transform', 'scale(1)'); $('.checked-flag-list').css('transform', 'scale(1)');
checkFlagListStatus = true; checkFlagListStatus = true;
......
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