diff --git a/public/images/rank/winner.gif b/public/images/rank/winner.gif new file mode 100644 index 0000000..757c1d1 Binary files /dev/null and b/public/images/rank/winner.gif differ diff --git a/src/components/game/GameEnd.vue b/src/components/game/GameEnd.vue new file mode 100644 index 0000000..89c41a4 --- /dev/null +++ b/src/components/game/GameEnd.vue @@ -0,0 +1,103 @@ + + + diff --git a/src/views/quiz/AddQuiz.vue b/src/views/quiz/AddQuiz.vue index a82726e..5378da3 100644 --- a/src/views/quiz/AddQuiz.vue +++ b/src/views/quiz/AddQuiz.vue @@ -1,5 +1,7 @@ @@ -947,4 +911,31 @@ div.addQuizBox > div.quizInfo > div.addOutput > table.outputTable > tr > td > in padding-right: 10px; bottom: 5%; } + +#end-popup { + padding: 10px; + position: absolute; + background-color: var(--main5-color); + border: 8px solid var(--main5-color); + border-radius: 10px; + width: 400px; + height: 570px; + margin-top: 80px; + margin-left: 430px; + z-index: 2; + overflow: hidden; +} + +#back-off { + width: 100%; + height: 100%; + + display: fixed; + position: fixed; + top: 0%; + left: 0%; + z-index: 1; + + background-color: rgba(0, 0, 0, 0.5); +}