Commit 16ec6119 by doszhang

dos

parent 4e56f454
......@@ -394,7 +394,7 @@ function prevQuestion() {
$('.question' + nowQuestionIndex + '-block').addClass('fadeoutright');
setTimeout(function () {
$('.question' + nowIndex1 + '-block').removeClass('fadeoutright').hide();
}, 1000);
}, 500);
$('.btn-submit').hide();
$('.btn-nextquestion').show();
nowQuestionIndex--;
......@@ -409,8 +409,8 @@ function prevQuestion() {
console.log('nowIndex:' + nowIndex2);
$('.question' + nowIndex2 + '-block').removeClass('fadeinleft').css('opacity', 1);
}, 1000);
}, 900);
}, 500);
}, 300);
}
}
......@@ -429,7 +429,7 @@ function nextQuestion(e) {
$('.question' + nowQuestionIndex + '-block').addClass('fadeoutleft');
setTimeout(function () {
$('.question' + nowIndex + '-block').removeClass('fadeoutleft').css('opacity', 0);
}, 1000);
}, 500);
nowQuestionIndex++;
watchedQuestion.push(nowQuestionIndex);
$('.question-page .point').animate({
......@@ -441,7 +441,7 @@ function nextQuestion(e) {
}
setTimeout(function () {
$('.question' + nowQuestionIndex + '-block').show();
}, 900);
}, 300);
} else {
if (e != 'indexbar') {
$('#notification_area').remove();
......
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