Commit d6f868ee by doszhang

dos

parent e9ee301e
...@@ -68,7 +68,7 @@ input::-webkit-input-placeholder { ...@@ -68,7 +68,7 @@ input::-webkit-input-placeholder {
/* page1 */ /* page1 */
.page1 { .page1 {
z-index: 5; z-index: 7;
} }
.page1 .red-line { .page1 .red-line {
...@@ -84,7 +84,7 @@ input::-webkit-input-placeholder { ...@@ -84,7 +84,7 @@ input::-webkit-input-placeholder {
/* flag-page */ /* flag-page */
.flag-page { .flag-page {
z-index: 4; z-index: 6;
animation: all 0.3s linear forwards; animation: all 0.3s linear forwards;
-webkit-animation: all 0.3s linear forwards; -webkit-animation: all 0.3s linear forwards;
} }
...@@ -248,7 +248,7 @@ input::-webkit-input-placeholder { ...@@ -248,7 +248,7 @@ input::-webkit-input-placeholder {
background: #e5382a; background: #e5382a;
transition: all linear .3s; transition: all linear .3s;
-webkit-transition: all linear .3s; -webkit-transition: all linear .3s;
z-index: 3; z-index: 5;
} }
.personal-page .decorate-img { .personal-page .decorate-img {
...@@ -346,7 +346,7 @@ input::-webkit-input-placeholder { ...@@ -346,7 +346,7 @@ input::-webkit-input-placeholder {
/* suggest-page */ /* suggest-page */
.suggest-page { .suggest-page {
z-index: 2; z-index: 4;
} }
input[name=signature] { input[name=signature] {
...@@ -396,6 +396,10 @@ input[name=signature]::-webkit-input-placeholder { ...@@ -396,6 +396,10 @@ input[name=signature]::-webkit-input-placeholder {
/* countdown-page */ /* countdown-page */
.countdown-page {
z-index: 3;
}
.countdown-page canvas { .countdown-page canvas {
transform: rotate(-90deg); transform: rotate(-90deg);
} }
...@@ -424,4 +428,9 @@ input[name=signature]::-webkit-input-placeholder { ...@@ -424,4 +428,9 @@ input[name=signature]::-webkit-input-placeholder {
transform: scale(1.1); transform: scale(1.1);
opacity: 0; opacity: 0;
} }
}
/* effect-page */
.effect-page {
z-index: 2;
} }
\ No newline at end of file
...@@ -316,6 +316,7 @@ function showCountDownPage() { ...@@ -316,6 +316,7 @@ function showCountDownPage() {
$('.suggest-page').fadeOut(300); $('.suggest-page').fadeOut(300);
countDown(function () { countDown(function () {
$('.countdown-page').fadeOut(300); $('.countdown-page').fadeOut(300);
$('.effect-page').show();
}); });
}, 500); }, 500);
} }
...@@ -335,7 +336,6 @@ function countDown(callback) { ...@@ -335,7 +336,6 @@ function countDown(callback) {
countdown--; countdown--;
if (countdown == 0) { if (countdown == 0) {
clearInterval(timer); clearInterval(timer);
// $('.countdown-num').removeClass('animate');
callback(); callback();
} else { } else {
...@@ -386,7 +386,7 @@ function backToFlag() { ...@@ -386,7 +386,7 @@ function backToFlag() {
$('.flag-page').animate({ $('.flag-page').animate({
'opacity': 1 'opacity': 1
}, 300, '', function () { }, 300, '', function () {
$('.flag-page').css('z-index', '4'); $('.flag-page').css('z-index', '6');
}); });
} }
...@@ -511,7 +511,7 @@ function showPersonalPage() { ...@@ -511,7 +511,7 @@ function showPersonalPage() {
$('.flag-page').animate({ $('.flag-page').animate({
'opacity': 0 'opacity': 0
}, 300, '', function () { }, 300, '', function () {
$('.flag-page').css('z-index', '2'); $('.flag-page').css('z-index', '4');
}); });
$('.personal-page').fadeIn(300); $('.personal-page').fadeIn(300);
// 创建个性化页面的flag列表 // 创建个性化页面的flag列表
......
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