My Melody Kawaii

JAVASCRIPT/퀴즈 이펙트

여러 문제를 풀 수 있는 퀴즈를 만들어 봤습니다.

younajeong 2023. 3. 25. 14:14

“ 지연되는 프로젝트에 인력을 더 투입하면 오히려 더 늦어진다. ”

- Frederick Philips Brooks
Mythical Man-Month 저자
728x90

퀴즈 이펙트 05

 

저번 문제에 이어서 여러 문제를 풀어볼 수 있는 퀴즈 이펙트 효과를 만들어 봤습니다. header의 내용들을 전체적으로 주석 처리를 해 준 후 자바스크립트를 사용해서 정답을 풀 수 있도록 하겠습니다.

 

 

HTML

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>퀴즈 이펙트05</title>

    <link rel="stylesheet" href="css/reset.css">
    <link rel="stylesheet" href="css/quiz.css">

</head>
<body>
    <header id="header">
        <h1><a href="../javascript14.html">Quiz</a> <em>객관식 확인하기(여러문제) 유형</em></h1>
        <ul>
            <li><a href="quizEffect01.html">1</a></li>
            <li><a href="quizEffect02.html">2</a></li>
            <li><a href="quizEffect03.html">3</a></li>
            <li><a href="quizEffect04.html">4</a></li>
            <li class="active"><a href="quizEffect05.html">5</a></li>
        </ul>
    </header>
    <!--//header-->

    <main id="main">
        <div class="quiz__wrap">
            <!-- <div class="quiz">
                <div class="quiz__header">
                    <h2 class="quiz__title"></h2>
                </div>
                <div class="quiz__main">
                    <div class="quiz__question"></div>
                    <div class="quiz__view">
                        <div class='dog__wrap'>
                            <div class="ture">정답입니다!</div>
                            <div class="false">틀렸습니다!</div>
                            <div class='card-container'>
                                    <div class='dog'>
                                        <div class='head'>
                                            <div class='ears'></div>
                                            <div class='face'></div>
                                        <div class='eyes'>
                                            <div class='teardrop'></div>
                                        </div>
                                        <div class='nose'></div>
                                        <div class='mouth'>
                                            <div class='tongue'></div>
                                        </div>
                                        <div class='chin'></div>
                                    </div>
                                    <div class='body'>
                                        <div class='tail'></div>
                                        <div class='legs'></div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div> 
                    <div class="quiz__choice">
                        <label for="choice1">
                            <input type="radio" id="choice1" name="choice" value="1">
                            <span></span>
                        </label>
                        <label for="choice2">
                            <input type="radio" id="choice2" name="choice" value="2">
                            <span></span>
                        </label>
                        <label for="choice3">
                            <input type="radio" id="choice3" name="choice" value="3">
                            <span></span>
                        </label>
                        <label for="choice4">
                            <input type="radio" id="choice4" name="choice" value="4">
                            <span></span>
                        </label>
                    </div>
                    <div class="quiz__answer">
                        <button class="confirm">정답확인하기</button>
                    </div>
                    <div class="quiz__desc"></div>
                </div> -->
            </div>
        </div>
    </main>
   <!-- //main -->

    <footer id="footer">
        <a href="mailto:jeongyouna_@naver.com">jeongyouna_@naver.com</a>
    </footer>
    <!-- footer -->

HTML

  • 저번 퀴즈 4번에서 했던 코드를 그대로 가져옵니다.
  • 하지만 스크립트로 내용을 출력해주기 위해서 div class__quiz부분을 주석 표시 해줍니다.

 

CSS-reset

@import url('https://webfontworld.github.io/DungGeunMo/DungGeunMo.css');
@import url('https://webfontworld.github.io/suncheon/Suncheon.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*,*::before, *::after {
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #222;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
}
li, ul, ol {
    list-style: none;
}
img {
    vertical-align: top;
    width: 100%;
}
em {
    font-style: normal;
}
body {
    background:
        radial-gradient(#ffdc69 3px, transparent 4px),
        radial-gradient(#ffdc69 3px, transparent 4px),
        linear-gradient(#fefefe 4px, transparent 0),
        linear-gradient(45deg, transparent 74px, transparent 75px, #a4a4a4 75px, #a4a4a4 76px, transparent 77px, transparent 109px),
        linear-gradient(-45deg, transparent 75px, transparent 76px, #a4a4a4 76px, #a4a4a4 77px, transparent 78px, transparent 109px),
        #fff;
    background-size: 109px 109px, 109px 109px,100% 6px, 109px 109px, 109px 109px;
    background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
}

CSS-quiz

/* header */
#header {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #262626;
    color: #fff;
    padding: 10px;
    margin-bottom: 100px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}
#header::before {
    content: '';
    border:  4px ridge#c5c5c5;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}
#header h1 {
    font-size: 28px;
    padding: 5px 5px 5px 10px;
    font-family: 'DungGeunMo';
    z-index: 10;
    position: relative;
}

#header h1 a {
    color: #fff;
}
#header h1 em {
    font-size: 0.5em;
} 
#header ul {
    padding: 5px;
} 
#header li {
    display: inline;
    z-index: 10;
    position: relative;
} 
#header li a {
    color: #fff;
    font-family: 'DungGeunMo';
    border:  1px dashed #fff;
    display: inline-block;
    padding: 5px;
}
#header li.active a,
#header li a:hover {
    background-color: #fff;
    color: #000;
}


/* footer */

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #262626;
    width: 100%;
    text-align: center;
}
#footer a {
    color: #fff;
    padding: 20px;
    display: block;
    font-family: 'DungGeunMo';
    z-index: 10;
    position: relative;
    
}
#footer::before {
    content: '';
    border:  4px ridge#a3a3a3;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}
#main {
    padding: 100px 0;
}

/* quiz__wrap */
.quiz__wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}
.quiz__wrap .quiz {
    width: 500px;
    background-color: #ffffff;
    border: 8px ridge #cacaca;
    margin: 10px;
    
}
.quiz__title {
    background-color: #fff7ca;
    border: 3px ridge #bab9b9;
    border-bottom-width: 6px;
    padding: 5px;
    font-family: 'DungGeunMo';
    font-size: 16px;
    color: #3d3d3d;
    text-align: center;
}
.quiz__question {
    padding: 20px;
    font-size: 24px;
    font-family: 'suncheon';
    font-weight: 300;
    line-height: 1.5;
    border-bottom: 6px ridge #cacaca;
}
.quiz__question em {
    color: #125ca2;
}
.quiz__answer {
    font-family: 'suncheon';
    padding: 20px;
    text-align: center;
    font-size: 24px;
    /* border-bottom: 6px ridge #cacaca; */
}

.quiz__answer .confirm {
    background-color: #fff091;
    border: 6px ridge #cacaca;
    width: 100%;
    font-family: 'DungGeunMo';
    padding: 20px;
    font-size: 10px 22px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}
.quiz__answer .confirm:hover{
    background-color: #efdd75;
}
.quiz__answer .result {
    background-color: #ffffff;
    border: 6px groove #cacaca;
    width: 100%;
    font-family: 'suncheon';
    padding: 10px 20px;
    font-size: 22px;
}
.quiz__answer .input{
    background-color: #ffffff;
    border: 6px groove #cacaca;
    width: 100%;
    font-family: 'suncheon';
    padding: 10px 20px;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    
}
.quiz__view {
    border-bottom: 6px ridge#cacaca;
    overflow: hidden;
}
.quiz__desc {
    border-top: 6px ridge #cacaca;
    padding: 20px;
    font-family: 'suncheon';
    background-color: #fffae4;
}
.quiz__desc::before {
    content: "✔️Tip ";
    color: #ff5050;
    font-weight: bold;
}
.quiz__choice {
    padding: 20px;
    border-bottom:  6px ridge #cacaca;
    font-family: 'suncheon';
}
.quiz__choice label {
    display: flex;
}
.quiz__choice label input {
    position: absolute;
    clip: rect(0 0 0 0);
        width:1px;
        height:1px;
        margin:-1px;
        overflow:hidden
}
.quiz__choice label span {
    font-size: 20px;
    line-height: 1.4;
    padding: 6px;
    display: flex;
    cursor: pointer;
    margin: 2px 0;
}
.quiz__choice label span::before {
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #fff;
    box-shadow: inset 0 0 0 4px #5cc302;
    transition: all 0.2s;
    flex-shrink: 0;
}
.quiz__choice label input:checked + span {
    background-color: #ffffc3;
}
.quiz__choice label input:checked + span::before {
    box-shadow: inset 0 0 0 8px #5cc302;;
}
.quiz__check {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    line-height: 130px;
    z-index: 1000;
    text-align: center;
    background-color: #fffb29;
    color: #000;
    font-family: 'suncheon';
    cursor: pointer;
}
.quiz__info {
    position: fixed;
    right: 20px;
    bottom: 180px;
    background-color: #fff649;
    text-align: center;
    width: 130px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px;
    font-family: 'suncheon';
    color: #000;
}
.quiz__info::after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: -10px;
    border-top: 10px solid #fff649;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
/* dog__wrap */
.dog .tail, 
.dog .chin, 
.dog .tongue::before, 
.dog .tongue::after, 
.dog .mouth, 
.dog .nose, 
.dog .teardrop, 
.dog .eyes, 
.dog .face::before, 
.dog .face::after, 
.dog .ears::before, 
.dog .ears::after,
.dog__wrap {
    transition: 0.2s ease-in;
}
.dog__wrap {
    position: relative;
}
.dog__wrap .ture {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: #97b9f9;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    position: absolute;
    right: 70%;
    top: 100px;
    font-family: 'suncheon';
    opacity: 0;

}
.dog__wrap .false {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background-color: #ffae5e;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 70%;
    top: 100px;
    font-family: 'suncheon';
    opacity: 0;
}
.dog__wrap.like .ture {
    opacity: 1;
    animation: wobble 0.6s;
}
@keyframes wobble {
    0% {transform: translateX(0) rotate(0deg);}
    15% {transform: translateX(-25%) rotate(-5deg);}
    30% {transform: translateX(20%) rotate(3deg);}
    45% {transform: translateX(-15%) rotate(-3deg);}
    60% {transform: translateX(10%) rotate(2deg);}
    75% {transform: translateX(-5%) rotate(-1deg);}
    100% {transform: translateX(0%) rotate(0deg);}
}
.dog__wrap.dislike .false {
    opacity: 1;
    animation: wobble 0.6s;
}

.card-container {
    position: relative;
    width: 360px;
    height: 378px;
    margin: auto;
    padding-top: 125px;
    border-radius: 3%;
    z-index: 0;
}
.card-container::before, .card-container::after {
    content: "";
    position: absolute;
    height: 100%;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 3%;
    z-index: -1;
}
.card-container::before {
    top: 3%;
    width: 93%;
}
.card-container::after {
    top: 5.5%;
    width: 85%;
}

.dog .head,
.dog .body {
    position: relative;
    width: 115px;
}
.dog .head {
    height: 115px;
    border-radius: 50% 50% 0 0;
    margin: 0 auto;
}
.dog .ears {
    position: relative;
    top: -14%;
    width: 100%;
}
.dog .ears::before, .dog .ears::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35px;
    height: 70px;
    background: #CB7A1D;
    border-top: 11px solid #F7AA2B;
    border-left: 7px solid #F7AA2B;
    border-right: 7px solid #F7AA2B;
}
.dog .ears::before {
    left: 0;
    border-radius: 50% 45% 0 0;
}
.dog .ears::after {
    right: 0;
    border-radius: 45% 50% 0 0;
}
.dog .face {
    position: absolute;
    background: #F7AA2B;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 0;
}
.dog .face::before, .dog .face::after {
    content: "";
    display: block;
    margin: auto;
    background: #FEFEFE;
}
.dog .face::before {
    width: 15px;
    height: 35px;
    margin-top: 24px;
    border-radius: 20px 20px 0 0;
}
.dog .face::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 60px;
    height: 65px;
    border-radius: 45% 45% 0 0;
}
.dog .eyes {
    position: relative;
    top: 29%;
    text-align: center;
}
.dog .eyes::before, .dog .eyes::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #451d1c;
    margin: 0 14.5%;
}
.dog .teardrop {
    position: absolute;
    top: 125%;
    left: 19%;
    width: 6px;
    height: 6px;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    background: #FEFEFE;
    visibility: hidden;
}
.dog .nose {
    position: relative;
    top: 35%;
    width: 16px;
    height: 8px;
    border-radius: 35px 35px 65px 65px;
    background: #451d1c;
    margin: auto;
}
.dog .mouth {
    position: relative;
    top: 34.5%;
    width: 4px;
    height: 6px;
    margin: 0 auto;
    text-align: center;
    background: #451d1c;
}
.dog .mouth::before, .dog .mouth::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid #451d1c;
    border-left-color: transparent;
    border-top-color: transparent;
    z-index: 2;
}
.dog .mouth::before {
    transform: translateX(-89%) rotate(45deg);
}
.dog .mouth::after {
    transform: translateX(-2px) rotate(45deg);
}
.dog .tongue {
    position: relative;
    z-index: 1;
}
.dog .tongue::before, .dog .tongue::after {
    content: "";
    position: absolute;
}
.dog .tongue::before {
    top: 10px;
    left: -7px;
    width: 18px;
    height: 0;
    border-radius: 50%;
    background: #451d1c;
    z-index: -1;
}
.dog .tongue::after {
    top: 14px;
    left: -4px;
    width: 12px;
    height: 0;
    border-radius: 20px;
    background: #F5534F;
    z-index: 5;
}
.dog .chin {
    position: relative;
    top: 47.5%;
    margin: 0 auto;
    width: 12px;
    height: 12px;
    border-top: 10px solid #e8e7ec;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-radius: 2px;
    z-index: 0;
}
.dog .body {
    position: relative;
    height: 139px;
    margin: auto;
    z-index: 0;
}
.dog .body::before, .dog .body::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    margin: auto;
    background: #F7AA2B;
}
.dog .body::after {
    top: -2px;
    bottom: -1px;
    width: 60px;
    background: #FEFEFE;
}
.dog .tail {
    position: absolute;
    left: -60%;
    bottom: 1px;
    background: #F7AA2B;
    width: 93px;
    height: 15px;
    transform: rotate(45deg);
    transform-origin: 100% 50%;
    border-radius: 25px 0 0 25px;
    z-index: -2;
}
.dog .legs {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 15%;
    background: #F7AA2B;
    border-radius: 10px 10px 0 0;
}
.dog .legs::before, .dog .legs::after {
    content: "";
    position: absolute;
    bottom: 1px;
    background: #CB7A1D;
    z-index: -1;
}
.dog .legs::before {
    left: -7.5%;
    width: 115%;
    height: 55%;
    border-radius: 5px 5px 0 0;
}
.dog .legs::after {
    left: -3.5%;
    width: 107%;
    height: 250%;
    border-radius: 20px 20px 35px 35px;
}


@keyframes movetongue {
    100% {
    height: 27px;
    }
}

@keyframes movetail {
    0% {
    transform: rotate(37deg);
    }
    100% {
    transform: rotate(52deg);
    }
}

@keyframes cry {
    100% {
    visibility: visible;
    }
}



.like {
    background: #fcf390;
}
.like .face::before {
    margin-top: 10px;
}
.like .face::after {
    height: 85px;
}
.like .eyes {
    top: 13%;
}
.like .eyes::before,
.like .eyes::after {
    width: 18px;
    height: 5px;
    margin: 0px 12.5%;
    transform: rotate(-37.5deg);
    border-radius: 20px;
}
.like .eyes::after {
    transform: rotate(37.5deg);
}
.like .nose {
    top: 18%;
}
.like .mouth {
    top: 16.5%;
}
.like .tongue::before {
    height: 12px;
}
.like .tongue::after {
    height: 24px;
    animation: movetongue 0.1s linear 0.35s infinite alternate forwards;
}
.like .chin {
    top: 34%;
}
.tail {
    animation: movetail 0.1s linear infinite alternate forwards;
}

.dislike {
    background: #5252da;
}
.dislike .ears::before {
    transform: rotate(-50deg) translate(-7px, 2px);
}
.dislike .ears::after {
    transform: rotate(50deg) translate(7px, 2px);
}
.dislike .face::before {
    margin-top: 28px;
}
.dislike .face::after {
    height: 55px;
}
.dislike .eyes {
    top: 38%;
}
.dislike .eyes::before,
.dislike .eyes::after {
    width: 18px;
    height: 5px;
    margin: 0px 14.5%;
    transform: rotate(-37.5deg);
    border-radius: 20px;
}
.dislike .eyes::after {
    transform: rotate(37.5deg);
}
.dislike .teardrop {
    animation: cry 0.1s ease-in 0.25s forwards;
}
.dislike .nose {
    top: 44%;
}
.dislike .mouth {
    top: 42%;
}
.dislike .chin {
    top: 52%;
}
.dislike .tail {
    transform: rotate(0);
    animation: movetail 0.5s linear infinite alternate forwards;
}

CSS도 퀴즈 이펙트 4와 동일하게 작성해줍니다.

 

Script

 <script>
    //문제 정보
    const quizInfo = [
        {
            infoType: "정보처리 기능사",
            infoTime: "2011년 2회",
            infoNumber: "20110201",
            infoQuestion: "현재 수행 중에 있는 명령 코드(Code)를 저장하고 있는 임시 저장 장치는?",
            infoChoice: {
                1:"인덱스 레지스터(Index Register)",
                2:"명령 레지스터(Instrudction Register)",
                3:"누산기(Accumulator)",
                4:"메모리 레지스터(Memory Register)",
            },
            infoAnswer: "2",
            infoDesc:"<br>명령 레지스터(Instruction Register) : 현재 실행중인 명령을 기억하는 레지스터 입니다."
        },{
            infoType: "정보처리 기능사",
            infoTime: "2011년 2회",
            infoNumber: "20110202",
            infoQuestion: "다음 중 RISC(Reduced Instruction Set Computer)의 설명으로 옳은 것은?",
            infoChoice:  {
                1:"메모리에 대한 액세스는 LOAD와 STORE만으로 한정되어 있다.",
                2:"명령어마다 다른 수행 사이클을 가지므로 파이프라이닝이 효율적이다.",
                3:"마이크로 코드에 의해 해석 후 명령어를 수행한다.",
                4:"주소지정방식이 다양하게 존재한다.",
            },
            infoAnswer: "1",
            infoDesc: "<br>RISC의 약자인 Reduced는 제한된으로 해석 될 수도 있습니다.따라서 메모리에 대한 엑세스는 LOAD와 STORE만으로 한정 되어 있다에서 한정 이라는 말과 Reduced의 뜻이랑 같습니다."
        },{
            infoType: "정보처리 기능사",
            infoTime: "2011년 2회",
            infoNumber: "20110203",
            infoQuestion: "클록펄스에 의해서 기억된 내용을 한 자리씩 우측이나 좌측으로 이동시키는 레지스터는?",
            infoChoice: {
                1:"시프트 레지스터",
                2:"범용 레지스터",
                3:"베이스 레지스터",
                4:"인덱스 레지스터",
            },
            infoAnswer: "1",
            infoDesc: "<br>시프트(shift)의 뜻은 '이동시키다'로 우측이나 좌측으로 이동시키는 레지스터와 뜻이 같습니다."
        },....      

    ];
    //선택자
    const quizWrap = document.querySelector(".quiz__wrap");
    let quizScore = 0; 

    // quizQuestion.innerHTML = "<em>"+quizInfo[0].infoNumber+"</em>. "+ quizInfo[0].infoQuestion;

    //문제출력
    const updateQuiz= () => {
        const exam = [];

        quizInfo.forEach((question, number) => {        //인자값 두개일 때 괄호 생략 불가능
            exam.push(`
                <div class="quiz">
                    <div class="quiz__header">
                        <h2 class="quiz__title">${question.infoType} ${question.infoTime}</h2>
                    </div>
                    <div class="quiz__main">
                        <div class="quiz__question"><em>${number+1}</em>. ${question.infoQuestion}</div>
                        <div class="quiz__view">
                            <div class='dog__wrap'>
                                <div class="ture">정답입니다!</div>
                                <div class="false">틀렸습니다!</div>
                                <div class="card-container">
                                    <div class="dog">
                                        <div class="head">
                                            <div class="ears"></div>
                                            <div class="face"></div>
                                            <div class="eyes">
                                                <div class="teardrop"></div>
                                            </div>
                                            <div class="nose"></div>
                                            <div class="mouth">
                                                <div class="tongue"></div>
                                            </div>
                                            <div class="chin"></div>
                                        </div>
                                        <div class="body">
                                            <div class="tail"></div>
                                            <div class="legs"></div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="quiz__choice">
                            <label for="choice1${number}">
                                <input type="radio" id="choice1${number}" name="choice${number}" value="1">
                                <span>${question.infoChoice[1]}</span>
                            </label>
                            <label for="choice2${number}">
                                <input type="radio" id="choice2${number}" name="choice${number}" value="2">
                                <span>${question.infoChoice[2]}</span>
                            </label>
                            <label for="choice3${number}">
                                <input type="radio" id="choice3${number}" name="choice${number}" value="3">
                                <span>${question.infoChoice[3]}</span>
                            </label>
                            <label for="choice4${number}">
                                <input type="radio" id="choice4${number}" name="choice${number}" value="4">
                                <span>${question.infoChoice[4]}</span>
                            </label>
                        </div>
                        <div class="quiz__desc">정답은 <em>${question.infoAnswer}</em>번입니다.<br>${question.infoDesc}</div>
                    </div>
                </div>
            `)
        });

        exam.push(`
            <div class="quiz__info">??점</div>
            <div class="quiz__check">❥정답 확인</div>
        `);

        quizWrap.innerHTML = exam.join("");

        //설명 숨기기
        document.querySelectorAll(".quiz__desc").forEach(el => el.style.display = "none");
    };
    updateQuiz();

    //정답 확인
    const answerQuiz = () => {
        const quizChoices = document.querySelectorAll(".quiz__choice");

        //사용자가 체크한 정답 == 문제 정답
        quizInfo.forEach((question, number)=>{
            const userSlector = `input[name=choice${number}]:checked`;                      //사용자가 체크한 정답 name이라는 속성안에 choice의 넘버 값을 가져옴
            const quizSlectorWrap = quizChoices[number];                                    //번호를 가져옴
            const userAnswer = (quizSlectorWrap.querySelector(userSlector)||{}).value;      //사용자가 체크한 번호 
            const dogWrap = quizWrap.querySelectorAll(".dog__wrap");

            if(userAnswer == question.infoAnswer){
                console.log("정답");
                dogWrap[number].classList.add("like");
                quizScore++;
            } else {
                console.log("오답");
                dogWrap[number].classList.add("dislike");
            }
        });

        //설명 보이기
        document.querySelectorAll(".quiz__desc").forEach(el => el.style.display = "block");

        //점수 보이기
        document.querySelector(".quiz__info").innerHTML = Math.ceil((quizScore / quizInfo.length) * 100 )+ "점";
    }

    //정답 클릭
    document.querySelector(".quiz__check").addEventListener("click", answerQuiz);


</script>

 

script 보충 설명

  • push() : push() 메서드는 배열 마지막 요소에 요소를 추가하는  메서드입니다.
  • join() :배열요소를 문자열로 결합합니다. 반환은 문자열입니다.
  • const exam = []; 상수 exam을 선언하고 빈 배열을 할당합니다. exam상수는 배열 형태의 데이터를 담을 수 있는 변수가 되었습니다. 이 요소는 배열을 추가하거나 제거하여 데이터를 관리할 수 있습니다.
  • ${number}는 템플럿 리터럴을 사용하여 사용하여 변수 number를 문자열 내에 삽입하는 방법입니다. (백틱)으로 문자열을 감싸는 방식으로, 문자열 내에 변수나 표현식을 삽입할 수 있습니다. 삽입하려는 변수나 표현식은 ${}`으로 감싸서 문자열 내에서 변수나 표현식을 사용할 수 있습니다.