728x90
반응형
객관식 확인하기 유형 퀴즈 이펙트
수업 시간에 배운 내용을 복습하면서 해보겠습니다.
코드 보기(HTML, JAVASCRIPT / CSS1 / CSS2) / 완성화면
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>퀴즈 이펙트04</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 class="active"><a href="quizEffect04.html">4</a></li>
<li><a href="quizEffect05.html">5</a></li>
<li><a href="quizWebd.html">W</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="true">정답입니다!</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:dongjin6539@naver.com">dongjin6539@naver.com</a>
</footer>
<!-- //footer -->
</body>
</html>
HTML 구성
- body 태그에 알맞은 header 구역, main 구역, footer 구역을 만들어줍니다.
- header 구역에 h1 태그를 사용해 알맞은 제목을 입력해줍니다.
- footer 구역에 a 링크 태그를 사용해 받을 이메일 주소를 링크와 같이 입력해줍니다.
- main 구역에 각 자식의 자식 태그를 알맞게 만들어주고 각 class 명을 입력해줍니다.
- 객관식 보기를 주기 위해 div 태그를 입력하고 자식으로 label 태그를 사용해 4개 만들고 또 그의 자식으로 input 태그와 span 태그를 사용해 class명과 각각 구분 할 수 있도록 해줍니다.
- 답에 대한 설명을 적기 위해 알맞은 class 명을 사용해 입력해줍니다.
- 강아지 이미지는 인터넷을 통해 얻어왔습니다. (참조: https://wsss.tistory.com/913)
- 위 페이지에 들어가서 코드펜을 통해 html 구조를 가져와서 main 구역에 입력해줍니다.(css 구조는 css 파일에 입력했습니다.)
- 그러면 body 태그의 구조는 완성됩니다.
- CSS는 각 태그에 알맞는 속성을 입력하고 속성 값을 입력해줍니다.
CSS1
/* header */
#header {
position: fixed;
left: 0;
top: 0;
background-color: #000;
color: #fff;
padding: 10px;
width: 100%;
z-index: 1000;
display: flex;
justify-content: space-between;
}
#header::before {
content: '';
border: 4px ridge #cacaca;
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;
width: 100%;
background-color: #000;
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 #cacaca;
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: #fff;
border: 8px ridge #000;
margin: 10px;
}
.quiz__title {
background-color: #000;
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: 'PyeongChang';
font-weight: 300;
line-height: 1.4;
border-bottom: 6px ridge #cacaca;
}
.quiz__question em {
color: #cacaca;
}
.quiz__answer {
font-family: 'PyeongChang';
padding: 20px;
text-align: center;
font-size: 24px;
}
.quiz__answer .confirm {
color: #fff;
background-color: #000;
border: 6px ridge #000;
width: 100%;
font-family: 'PyeongChang';
padding: 10px 20px;
font-size: 22px;
cursor: pointer;
transition: all 0.3s;
font-weight: bold;
}
.quiz__answer .confirm:hover {
color: #000;
background-color: #cacaca;
}
.quiz__answer .result {
background-color: #cacaca;
border: 6px ridge #000;
width: 100%;
font-family: 'PyeongChang';
padding: 10px 20px;
font-size: 22px;
}
.quiz__answer .input {
background-color: #fff;
border: 6px groove #000;
width: 100%;
font-family: 'PyeongChang';
padding: 10px 20px;
font-size: 22px;
margin-bottom: 10px;
}
.quiz__view {
border-bottom: 6px ridge #cacaca;
overflow: hidden;
}
.quiz__desc {
border-top: 6px ridge #000;
padding: 20px;
font-family: 'PyeongChang';
background-color: #cacaca;
}
.quiz__desc::before {
content: '✍️ Tip ';
color: #ff3c3c;
font-weight: bold;
}
.quiz__choice {
padding: 20px;
border-bottom: 6px ridge #000;
font-family: 'PyeongChang';
}
.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%;
background: #fff;
box-shadow: inset 0 0 0 4px #000;
margin-right: 15px;
transition: all 0.2s;
flex-shrink: 0;
}
.quiz__choice label input:checked + span {
background-color: #cacaca;
border-radius: 10px;
}
.quiz__choice label input:checked + span::before {
box-shadow: inset 0 0 0 5px #cacaca;
border: 4px solid #000;
}
.quiz__check {
position: fixed;
right: 10px;
bottom: 60px;
width: 150px;
height: 150px;
line-height: 150px;
border-radius: 50%;
z-index: 1000;
text-align: center;
background: #cacaca;
color: #000;
font-family: 'PyeongChang';
cursor: pointer;
border: 5px solid #000;
font-size: 24px;
}
.quiz__info {
position: fixed;
right: 20px;
bottom: 220px;
background-color: #cacaca;
border: 5px solid #000;
text-align: center;
width: 130px;
height: 50px;
line-height: 50px;
border-radius: 10px;
font-family: 'PyeongChang';
color: #000;
}
.quiz__info::after {
content: '';
position: absolute;
left: 50%;
margin-left: -10px;
bottom: -10px;
border-top: 10px solid #000;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
CSS2
@import url('https://webfontworld.github.io/DungGeunMo/DungGeunMo.css');
@import url('https://webfontworld.github.io/PyeongChang/PyeongChang.css');
* {
margin: 0;
padding: 0;
}
*, *::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(#cacaca 3px, transparent 4px),
radial-gradient(#cacaca 3px, transparent 4px),
linear-gradient(#fff 4px, transparent 0),
linear-gradient(45deg, transparent 74px, transparent 75px, #cacaca55 75px, #cacaca55 76px, transparent 77px, transparent 109px),
linear-gradient(-45deg, transparent 75px, transparent 76px, #cacaca55 76px, #cacaca55 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;
}
JAVASCRIPT
<script>
// 선택자
const quizWrap = document.querySelector(".quiz__wrap");
const quizTitle = quizWrap.querySelector(".quiz__title");
const quizQuestion = quizWrap.querySelector(".quiz__question");
const quizChoice = quizWrap.querySelectorAll(".quiz__choice span");
const quizSelect = quizWrap.querySelectorAll(".quiz__choice input");
const quizDesc = quizWrap.querySelector(".quiz__desc");
const quizAnswer = quizWrap.querySelector(".quiz__answer");
const quizCofirm = quizWrap.querySelector(".quiz__answer .confirm");
const dogWrap = quizWrap.querySelector(".dog__wrap");
// 문제 정보
const quizInfo = [
{
infoType: "웹디자인 기능사",
infoTime: "2016년 4회",
infoNumber: "1",
infoQuestion: "다음 중 디자인의 기본 요소들로 옳은 것은?",
infoChoice: ["선, 색채, 공간, 수량", "점, 선, 면, 질감", "시간, 수량, 구조, 공간", "면, 구조, 공간, 수량"],
infoAnswer: "2",
infoDesc: "디자인의 기본 요소에는 점, 선, 면, 질감이 있습니다."
}
];
// 문제 출력
function updateQuiz(){
quizTitle.innerHTML = quizInfo[0].infoType + " " + quizInfo[0].infoTime;
quizQuestion.innerHTML = "<em>" + quizInfo[0].infoNumber + "</em>. " + quizInfo[0].infoQuestion;
quizDesc.innerHTML = quizInfo[0].infoDesc;
for(let i=0; i<quizInfo[0].infoChoice.length; i++){
quizChoice[i].textContent = quizInfo[0].infoChoice[i]
};
// 해설 숨기기
quizDesc.style.display = "none";
};
// 정답 확인
function answerQuiz(){
// 사용자가 선택한 인풋박스(checked) == 문제 정답(quizInfo[0].infoAnswer)
for(let i=0; i<quizChoice.length; i++){
if(quizSelect[i].checked == true){ // 사용자가 보기를 체크한 상태
if(quizSelect[i].value == quizInfo[0].infoAnswer){
dogWrap.classList.add("like");
} else {
dogWrap.classList.add("dislike");
}
}
}
// 해설 보이기
quizDesc.style.display = "block";
// 정답 숨기기
quizAnswer.style.display = "none";
};
// 정답 출력
quizCofirm.addEventListener("click", answerQuiz);
// 문제 출력
updateQuiz();
</script>
자바스크립트 이용
- 위의 html body 구조는 반복해서 사용 될 수도 있어 script를 이용해 글씨를 입력해줍니다.
- 선택자로 변수를 지정해주고 문제는 한 개이기 때문에 document.querySelector을 사용하고 보기는 여러 개가 있기 때문에 document.querySelectorAll 사용해서 선택자를 만들어주고 ( ) 안에 html body 태그의 입력하고자 하는 위치의 class 명과 태그를 입력해줍니다.
- 문제 정보를 변수 지정해주고 문제의 종류가 많기 때문에 배열 안에 객체가 있는 형식으로 각 구역에 맞는 알맞은 값을 입력해줍니다.
- 문제 출력은 함수와 for문을 이용해서 innerHTML을 사용해서 문제 정보가 배열 안에 객체가 있는 형식이므로 배열 안에 객체의 데이터를 불러오는 방식으로 문제를 출력했습니다. 그리고 사용자가 문제를 풀기 전에 해설을 숨기기 위해 style.display = "none";를 사용해 숨겼습니다.
- 정답 확인도 함수와 for문을 이용해서 확인했습니다. 먼저 if문으로 사용자가 무엇을 체크했는지 확인하기 위해 checked의 타입이 true인지 확인하고 if문을 사용해서 사용자가 체크한 답과 정답이 맞는지 확인해서 정답을 확인시켜줍니다.
- 문제를 풀고 나서 해설을 보여주고 정답 확인하기 버튼을 숨기기 위해 각각 style.display = "block";와 style.display = "none";를 입력해줍니다.
- 사용자가 정답을 체크하고 정답 확인하기 버튼을 클릭하면 정답이 출력되도록 addEventListener 속성을 사용해줍니다.
참고
- 아직 잘 모르는 자바스크립트 속성에 대해 알아보겠습니다.
속성 | 속성 설명 |
checked | 사용자가 요소를 체크했거나 선택한 경우 활성화되고, 체크나 선택을 해제하는 경우 비활성화됩니다. |
clip | 요소의 특정 부분만 나오도록 할 수 있습니다. |
box-shadow | 요소의 테두리를 감싼 그림자 효과를 추가합니다. |
flex-shrink | flex-item 요소의 flex-shrink 값을 설정하는 속성입니다. |
transparent | 요소의 불투명도를 설정합니다. |
https://dongjin6539.github.io/web2023/javascript/javascript14.html
728x90
반응형