remove jump level
This commit is contained in:
parent
67e606e549
commit
a758e7ddc0
@ -572,7 +572,7 @@ window.addEventListener('keydown', (e) => {
|
|||||||
<div class="dot" v-if="gameState == GAME_STATE.ingame">
|
<div class="dot" v-if="gameState == GAME_STATE.ingame">
|
||||||
<div v-for="(_, index) in giftList" :key="index"
|
<div v-for="(_, index) in giftList" :key="index"
|
||||||
class="dot-item" :class="{ finished: index < giftProgress }"
|
class="dot-item" :class="{ finished: index < giftProgress }"
|
||||||
@click="giftProgress = index">
|
@click="0 && (giftProgress = index)">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -166,8 +166,8 @@ const confirmState = ref<'none' | 'confirmed'>('none');
|
|||||||
</div>
|
</div>
|
||||||
<div class="quiz-progress-text">答题进度 {{ qIndex + 1 }} / {{ total }}</div>
|
<div class="quiz-progress-text">答题进度 {{ qIndex + 1 }} / {{ total }}</div>
|
||||||
<div class="quiz-progress dot">
|
<div class="quiz-progress dot">
|
||||||
<div class="dot-item" v-for="(val, i) in Array.from({ length: total })" :key="i" @click="qIndex = i"
|
<div class="dot-item" v-for="(val, i) in Array.from({ length: total })" :key="i"
|
||||||
:class="{ active: i <= qIndex }"></div>
|
@click="0 && (qIndex = i)" :class="{ active: i <= qIndex }"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -397,7 +397,7 @@ const confirmState = ref<'none' | 'confirmed'>('none');
|
|||||||
height: 2vw;
|
height: 2vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
.quiz-progress-text{
|
.quiz-progress-text {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 11.5%;
|
bottom: 11.5%;
|
||||||
font-size: 3.1vw;
|
font-size: 3.1vw;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user