- [셸위:게임 친구 매칭 사이트] MBTI 테스트(1) - 프론트2024년 09월 02일
- Song hyun
- 작성자
- 2024.09.02.:34
728x90반응형[셸위:게임 친구 매칭 사이트] MBTI 테스트 구현 (1) - 프론트
1. startTestPage.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style> </style> </head> <body> <div class="personal-test"> <div class="intro-container"> <h1>나의 게임 성향을 알아보는 MBTI 테스트</h1> <button class='start-btn' onclick="startTestPage()">테스트 시작</button> </div> </div> <div class="start-test"> <progress max="12" class="bar-progress"></progress> <h1></h1> <h1 id="question-text"></h1> <form id="test-form"> <input class="answerBtn" type="button" value="yes" onclick="submitAnswer('yes')"> <input class="answerBtn" type="button" value="no" onclick="submitAnswer('no')"> </form> </div> <div class="finish-test"> <h1>모든 질문이 끝났습니다!</h1> <h1 id="question-text"></h1> <form id="test-form"> <input class="answerBtn" type="button" onclick="showResult()" value="제출하기"> </form> </div> <script type="text/javascript"> // 질문 리스트 정의 const questionList = [ { id: 1, title: "나는 여러사람들과 같이 하는 게임보다 혼자 할수있는 게임을 좋아한다", section: "SN" }, { id: 2, title: "나는 게임에서 만난 사람과 친해지는 것이 힘들다", section: "SN" }, { id: 3, title: "나는 게임에서 호흡이 좋았던 사람으로부터 친구 추가가 오면 받기가 부담스럽다", section: "SN" }, { id: 4, title: "나는 게임이 잘 안풀릴때 공략을 찾아보는 편이다", section: "QM" }, { id: 5, title: "나는 지금 메타에서 성능이 좋은 캐릭터만 키우는 편이다", section: "QM" }, { id: 6, title: "나는 내가 키우던 캐릭터가 밸런스 패치로 인해 성능이 안좋아지면 버리는편이다", section: "QM" }, { id: 7, title: "나는 게임에서 내가 오더 내리는걸 좋아한다", section: "RE" }, { id: 8, title: "나는 팀원들이 각자 개인행동을 하면 화가 난다", section: "RE" }, { id: 9, title: "나는 중재를 잘하는 편이다", section: "RE" }, { id: 10, title: "나는 게임의 승패유무와 상관없이 내용이 재밌으면 지던 이기던 상관없다", section: "TC" }, { id: 11, title: "나는 팀원이 게임을 못하면 화가 난다", section: "TC" }, { id: 12, title: "나는 내 티어와 승률에 집착하는 편이다", section: "TC" } ]; // 로컬 스토리지에서 questionList 읽어오기 const storedQuestionList = JSON.parse(localStorage.getItem('questionList')) || questionList; const progress = document.querySelector('.bar-progress'); const beforeTest = document.querySelector('.intro-container'); // 테스트 시작 div const startTest = document.querySelector('.start-test'); // 테스트 div const finishTest = document.querySelector('.finish-test'); // 테스트 종료 div const testText = document.getElementById('question-text'); let progressValue = 0; // 문제 인덱스 // 대답 배열 var answerArray = []; // 페이지 진입 function enterPage() { startTest.style.display = 'none'; finishTest.style.display = 'none'; } // 테스트 시작 function startTestPage() { beforeTest.style.display = 'none'; finishTest.style.display = 'none'; startTest.style.display = 'block'; progress.value = 1; testText.innerText = storedQuestionList[progressValue].title; } // 답변 제출 처리 function submitAnswer(answer) { if (progress.value === 12) { beforeTest.style.display = 'none'; startTest.style.display = 'none'; finishTest.style.display = 'block'; localStorage.setItem('answerArray', JSON.stringify(answerArray)); testText.innerText = "모든 질문이 끝났습니다"; return; } // 진행도 , 문제 진행도 추가 progress.value++; progressValue++; // 문제 텍스트 변경 if (progressValue < storedQuestionList.length) { testText.innerText = storedQuestionList[progressValue].title; answerArray[progressValue - 1] = { answer: answer }; console.log(answer); } } function showResult() { var form = document.createElement('form'); form.setAttribute('method', 'post'); form.setAttribute("charset", "UTF-8"); form.setAttribute('action', '/test/show-result'); var data = document.createElement('input'); data.setAttribute('type', 'hidden'); data.setAttribute('name', 'answerArray'); data.setAttribute('value', JSON.stringify(answerArray)); form.appendChild(data); console.log(''); cole.log(JSON.stringify(answerArray)); document.body.appendChild(form); form.submit(); } enterPage(); </script> </body> </html>
2. resultTest.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <div class="result-page"> <div class="my-result"> <h1>당신의 성향은...</h1> <h2>${resultMbti.name} : ${resultMbti.nickname}</h2> <h3>${resultMbti.content}</h3> </div> <div class="good-matched"> <h4>나와 잘 맞는 사람은...</h4> <h5>${goodMatchedMbti.name} : ${goodMatchedMbti.nickname}</h5> <p>${goodMatchedMbti.content}</p> </div> <div class="bad-matched"> <h4>나와 잘 맞지 않는 사람은...</h4> <h5>${badMatchedMbti.name} : ${badMatchedMbti.nickname}</h5> <p>${badMatchedMbti.content}</p> </div> </div> </body> </html>
728x90반응형'💡My project > 셸위 : 게임 친구 매칭 사이트' 카테고리의 다른 글
[셸위:게임 친구 매칭 사이트] 슬라이드 배너 구현 (4) 2024.09.03 [셸위:게임 친구 매칭 사이트] MBTI 테스트 구현 (2) - 테스트 로직 (1) 2024.09.02 [셸위:게임 친구 매칭 사이트] 6. 1차 기능 구현(2) - 2024.08.26 (0) 2024.08.26 [셸위:게임 친구 매칭 사이트] 6. 1차 기능 구현(1) - 2024.08.23 (0) 2024.08.24 [셸위:게임 친구 매칭 사이트] 5. 기능 명세서 및 역할 분담, 프로젝트 세팅 - 2024.08.22 (0) 2024.08.23 다음글이전글이전 글이 없습니다.댓글
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)