예제/퀴즈 이펙트

퀴즈 이펙트_문제를 만들어 봅시다!

아라라_ 2023. 3. 8. 20:50

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

Frederick Philips Brooks
Mythical Man-Month 저자
728x90

오늘은 강아지가 나오는 퀴즈화면을 만들어 보았습니다.
 

reset.css

리셋은 먼저 제가 제작하려는 사이트들의 기본 셋팅을 의미합니다.
이번에는 csss파일로 만들어 제작하였습니다.

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
  }
a {
    text-decoration: none;
    columns: #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(#2b32b2 3px, transparent 4px),
        radial-gradient(#1488cc 3px, transparent 4px),
        linear-gradient(#fff 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;
}

전체를 마진과 패딩을 0으로 하고 시작하는 것을 기본으론 하고 있습니다.

위치(클래스명) 속성 속성설명 내용
*, *::before, *::after box-sizing: border-box; 브라우저가 요소의 총 너비와 높이르 계산하는 방법을 지정 지정한 크기가 요소의 패딩과 테두리까지 포함된 총너비와 높이로 계산(요소의 콘텐츠 영역이 작아지더라도 전체 크기가 변경되지않으므로 레이아웃이 예측 가능하고 일관성 있게 유지가능)
h1,h2,h3,h4,h5,h6 font-weight: normal; 폰트의 굵기 폰트의 굵기를 보통으로 줌(리셋하는 속성으로 사용)
img vertical-align: top; 인라인 요소나 테이블 셀의 수직 정렬을 의미(인라인 구조여야 함 블록 구조에는 적용 불가) 정렬 기준을 상단으로 주어 기본적으로 있는 여백을 없앰
body radial-gradient(#2b32b2 3px, transparent 4px), radial-gradient(#1488cc 3px, transparent 4px) radial-gradient 원형 그라데이션을 만들때 사용하는 함수  각각 #2b32b2와 #1488cc라는 색상의 원형 그라데이션을 만듦
transparent 투명한 색상을 의미 색상의 투명도를 조절하여 그라데이션효과를 만들수있습니다.
4px 색상의 나타나는 크기 이 속성은 마지막에 오는 값으로 나타나는 색상의 크기값을 나타냅니다.

 
 

quiz.css

이제 본격적으로 만들고자하는 페이지의 stylesheet를 만듭니다.
코딩이 길어 축약해서 설명합니다.
 

/* header */
#header {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #262626;
    color: #fff;
    padding: 10px;
    margin-bottom: 100px;
    width: 100%;
    z-index: 1000;
}
#header::before {
    content: '';
    border: 4px ridge #a3a3a3;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}
#header h1 {
    font-size: 28px;
    padding: 0px 5px 5px 10px;
    font-family: 'DungGeunMo';
    z-index: 10;
    position: relative;
}
#header h1 a {
    color: #fff;
}
#header h1 em {
    font-size: 0.5em; /* em은 부모박스의 크기를 기준으로 1은 부모박스 크기 /rm은 루트 폴더기준 */
}
/* main */
#main {
    padding: 100px 0;
}

/* footer */
#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #262626;
    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-bottom: 100px;
}

/* quiz__wrap */
.quiz__wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.quiz__wrap .quiz {
    max-width: 500px;
    background-color: #fff;
    border: 8px ridge #cacaca;
    width: 100%;
}
.quiz__title {
    background: linear-gradient(to right, #2b32b2, #1488cc);
    border: 3px ridge #cacaca;
    border-bottom-width: 6px;
    padding: 5px;
    font-family: 'DungGeunMo';
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.quiz__question {
    padding: 20px;
    font-size: 24px;
    font-family: 'EliceDigitalBaeum';
    font-weight: bold;
    line-height: 1.5;
    border-bottom: 6px ridge #cacaca;
}
.quiz__question em {
    color: #008cff;
}
.quiz__answer {
    font-family: 'EliceDigitalBaeum';
    font-size: 24px;
    padding: 20px;
    text-align: center;
    /* border-bottom: 6px ridge #cacaca; */
}
.quiz__answer .confirm {
    background-color: #cacaca;
    border: 6px ridge #cacaca;
    width: 100%;
    font-family: 'EliceDigitalBaeum';
    padding: 10px 20px;
    font-size: 22px;
    cursor: pointer;
    transform: all 0.3s;
    font-weight: bold;
}
.quiz__answer .confirm:hover {
    background-color: #8dd5ff;
}
.quiz__answer .result {
    background-color: #fff;
    border: 6px ridge #cacaca;
    width: 100%;
    font-family: 'EliceDigitalBaeum';
    padding: 10px 20px;
    font-size: 22px;
    /* display: none; */
}
.quiz__view {
    border-bottom: 6px ridge #cacaca;
    overflow: hidden;

}
/* 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, 
.wrapper {
    transition: 0.2s ease-in;
}
.card-container {
    position: relative;
    width: 360px;
    height: 378px;
    margin: auto;
    padding-top: 125px;
    border-radius: 3%;
    /* background: #fff; */
    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;
}

.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 movetongue {
    100% {
        height: 27px;
    }
}
@keyframes movetail {
    0% {
        transform: rotate(37deg);
    }
    100% {
        transform: rotate(52deg);
    }
}
@keyframes movetail {
    0% {
        transform: rotate(37deg);
    }
    100% {
        transform: rotate(52deg);
    }
}
@keyframes cry {
    100% {
        visibility: visible;
    }
}
@keyframes cry {
    100% {
        visibility: visible;
    }
}


/* dog__wrap like */
.like {
    background: #fff48e;
}
.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;
    animation: movetongue 0.1s linear 0.35s infinite alternate forwards;
}
.like .chin {
    top: 34%;
}
.tail {
    animation: movetail 0.1s linear infinite alternate forwards;
    animation: movetail 0.1s linear infinite alternate forwards;
}

/* dog__wrap dislike */
.dislike {
    background: #371a50;
}
.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;
    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;
    animation: movetail 0.5s linear infinite alternate forwards;
}

quiz.css는 header, main,footer, quiz__wrap, dog__wrap, dog__wrap like, dog__wrap dislike로 나누어집니다.
 

header

위치(클래스명) 속성명 속성설명 내용
header position: fixed; 요소를 뷰포트에 상대적으로 고정시킴 header가 인터넷 창에 따라 움직이는 현상을 잡기위해 뷰포인트(보이는 부분)에 고정시킴
  z-index: 1000; 요소의 쌓임 순서를 지정하는 속성(위치와 관계없이 쌓임 순서를 지정) 포토샵에서 레아아웃을 쌓듯이 쌓는 모양으로 값이 클수록 다른 요소들보다 위에 있습니다. 
#header::before position: absolute; 부모요소나 뷰포트에 상대적인 위치에 배치 현재 header에 있는 선을 부모인 header을 기준으로  위치와 크기을 배치하도록 지정
  width: calc(100% - 10px);
height: calc(100% - 10px);
calc()을 사용 위에 코드는 100%에서 10px를 뺀 값을 요소의 너비로 지정
  border: 4px ridge #a3a3a3; 입체감있는 선 4px의 두께 입체감 있는 선을 만듦
#header h1 em font-size: 0.5em em은 폰트사이즈 기준으로 폰트사이즈가 100%일때 1em임 현재 0.5em이라하면 폰트사이즈의 50%임

 

main

main은 크게 필요한 부분이 없어 건너 뛰겠습니다.
 
 

footer

푸터도 헤더와 비슷하게 만들어 졌습니다. 헤더를 참고하시면 좋습니다.
 
 

quiz__wrap

퀴즈가 나오는 부분도 별다르게 특별한 것은 없습니다.
 
 

dog__wrap

강아지가 나오는 부분입니다.
움직이는 애니메이션으로 타블로그에 나오는 소스를 활용하였습니다.
참고하세요!
https://wsss.tistory.com/913

 

좋아요! 싫어요!가 분명한 강아지 애니메이션

See the Pen Cute Dog by David López (@davidlpz) on CodePen. 좋아요! 싫어요!가 분명한 강아지 애니메이션

wsss.tistory.com

 
 

quizEffect01.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>퀴즈 이펙트01</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>
    </header>
    <!-- // header -->

    <main id="main">
        <div class="quiz__wrap">
            <div class="quiz">
                <div class="quiz__header">
                    <h2 class="quiz__title"><span></span> <em></em></h2>
                </div>
                <div class="quiz__main">
                    <div class="quiz__question">
                        <em></em>. <span></span>
                    </div>
                    <div class="quiz__view dislike">
                        <div class="dog__wrap">
                            <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>
                <div class="quiz__answer">
                    <button class="confirm">정답 확인하기</button>
                    <div class="result"></div>
                </div>
                <div class="quiz__footer"></div>
            </div>
        </div>
    </main>
    <!-- // main -->

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

    <script>
        // 선택자
        const quizWrap = document .querySelector(".quiz__wrap")
        const quizTitle = quizWrap .querySelector(".quiz__title span")
        const quizTime = quizWrap .querySelector(".quiz__title em")
        const quizQuestion = quizWrap .querySelector(".quiz__question span");
        const quizQuestionNum = quizWrap .querySelector(".quiz__question em");
        const quizAnswerConfirm = quizWrap .querySelector(".quiz__answer .confirm");
        const quizAnswerResult = quizWrap .querySelector(".quiz__answer .result");


        // 문제 정보
        const infoType = "웹디자인 기능사";
        const infoTime = "2012년 1회";
        const infoNumber = "1"
        const infoQuestion = "인접한 두색의 경계 부분에 생상, 명도, 채도의 대비가 더욱 강하게 일어나는 현상을 무엇이라고 하는가?";
        const infoAnswer =  "연변대비";

        // 문제 출력
        quizTitle.innerText = infoType;
        quizTime.innerText = infoTime;
        quizQuestionNum.innerText = infoNumber;
        quizQuestion.innerText = infoQuestion;
        quizAnswerResult.innerText = infoAnswer;

        // 정답 숨기기
        quizAnswerResult.style.display = "none";

        // 정답 확인
        quizAnswerConfirm.addEventListener("click", function(){
            quizAnswerResult.style.display = "block";
            quizAnswerConfirm.style.display = "none";
        })



    </script>
</body>
</html>

 
html에 있는 다른 요소들 중에 답과 문제가 들어가는 부분은 스크립트로 출력할 수 있도록합니다.
 

script

선택자

const quizWrap = document .querySelector(".quiz__wrap")
const quizTitle = quizWrap .querySelector(".quiz__title span")
const quizTime = quizWrap .querySelector(".quiz__title em")
const quizQuestion = quizWrap .querySelector(".quiz__question span");
const quizQuestionNum = quizWrap .querySelector(".quiz__question em");
const quizAnswerConfirm = quizWrap .querySelector(".quiz__answer .confirm");
const quizAnswerResult = quizWrap .querySelector(".quiz__answer .result");

선택자들을 각각변수에 저장합니다.
 

문제정보

const infoType = "웹디자인 기능사";
const infoTime = "2012년 1회";
const infoNumber = "1"
const infoQuestion = "인접한 두색의 경계 부분에 생상, 명도, 채도의 대비가 더욱 강하게 일어나는 현상을 무엇이라고 하는가?";
const infoAnswer =  "연변대비";

출력하고자하는 정보들을 변수에 저장합니다.
 
 

문제 출력

quizTitle.innerText = infoType;
quizTime.innerText = infoTime;
quizQuestionNum.innerText = infoNumber;
quizQuestion.innerText = infoQuestion;
quizAnswerResult.innerText = infoAnswer;

 
변수에 저장된 요소들 중 quiz__title클래스와 quiz__question클래스에 속한 span과 em요소 에 각각 텍스트로 출력합니다.
이때 위에서 출력문을저장한 변수에 문제정보가 있는 변수를 각각 할당합니다.
 
 

정답 숨기기

 quizAnswerResult.style.display = "none";

css에서 지정하지 않고 스크립트에서 지정하는 방식으로 css에서 display : none과 같습니다.
 
 

정답 확인

quizAnswerConfirm.addEventListener("click", function(){
    quizAnswerResult.style.display = "block";
    quizAnswerConfirm.style.display = "none";
})

위 와같이 css에서 지정하지 않고 스크립트에서 지정하는 방식으로 css에서 display : block과 display : none과 같습니다.
result에는 block confirm에는 none을 줍니다.