├── Info ├── index.html ├── indexold.html └── kkkk.html ├── Old ├── Bob.js ├── egg.html ├── extra.css ├── images │ ├── B1.gif │ ├── B2.gif │ ├── B3.gif │ ├── B4.gif │ ├── B5.gif │ ├── BA.PNG │ ├── BE4.PNG │ ├── BT.PNG │ ├── ID.PNG │ ├── head.PNG │ └── search.PNG ├── index.html └── pw.html ├── README.md ├── Resource ├── CosmicCalendarrr.pdf ├── DopplerDucklingss.pdf ├── WomeninASTRO.pdf └── index.html ├── finalscript.js ├── images ├── 10Sn.png ├── 11Grav.png ├── 12hand.png ├── 13sat.png ├── 14sun.png ├── 15gal.png ├── 16rocket.png ├── 1DE.png ├── 2light.png ├── 3UFO.png ├── 4nebula.png ├── 5comet.png ├── 6ST.png ├── 7DM.png ├── 8met.png ├── 9BH.png ├── BE3.PNG ├── BE4.PNG ├── BE5.PNG ├── Q1.gif ├── Q10.gif ├── Q11.gif ├── Q12.gif ├── Q13.gif ├── Q2.gif ├── Q3.gif ├── Q4.gif ├── Q5.gif ├── Q6.gif ├── Q7.gif ├── Q8.gif ├── Q9.gif ├── all.png ├── gal.html ├── izeecon.PNG └── main.gif ├── index.html ├── styles.css └── sub.html /Info/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Woahh! Good Job!!
77 |${question.question}
`; 95 | if (question.image) { 96 | html += `"You have broken the fourth wall!"
16 | 17 |${question.question}
`; 248 | if (question.image) { 249 | html += `E Score: ${userAnswers['E'] || 0}, S Score: ${userAnswers['S'] || 0}, T Score: ${userAnswers['T'] || 0}, P Score: ${userAnswers['P'] || 0}
299 | //I Score: ${userAnswers['I'] || 0}, N Score: ${userAnswers['N'] || 0}, F Score: ${userAnswers['F'] || 0}, J Score: ${userAnswers['J'] || 0}
300 | // 301 | //`; 302 | // to here 303 | 304 | if (currentQuestion < questions.length - 1) { 305 | currentQuestion++; 306 | displayQuestion(); 307 | } else { 308 | showResult(); 309 | } 310 | } 311 | 312 | // ... 313 | 314 | 315 | function showResult() { 316 | const resultElement = document.getElementById('result'); 317 | const resultTextContainer = document.querySelector('.result-text'); 318 | const resultImage = document.getElementById('result-image'); 319 | const topLetters = {}; 320 | 321 | const pairs = ["IE", "NS", "TF", "PJ"]; 322 | pairs.forEach(pair => { 323 | const options = pair.split(''); 324 | const scores = options.map(option => userAnswers[option] || 0); 325 | const topOptionIndex = scores.indexOf(Math.max(...scores)); 326 | const topOption = options[topOptionIndex]; 327 | topLetters[pair] = topOption; 328 | }); 329 | 330 | //each pair 331 | const result = pairs.map(pair => topLetters[pair]).join(''); 332 | 333 | //show result 334 | const personalityData = resultOptions[result]; 335 | if (personalityData) { 336 | resultTextContainer.innerHTML = ` 337 | `; 338 | 339 | resultImage.src = "images/"+personalityData.image; 340 | resultImage.alt = `${personalityData.image} Image`; 341 | } else { 342 | 343 | } 344 | 345 | document.getElementById('quiz').style.display = 'none'; // Hide the quiz 346 | document.getElementById('result').style.display = 'block'; // Show the result 347 | document.getElementById('restart-button').style.display = 'block'; // Show the restart button 348 | } 349 | 350 | 351 | 352 | //Function to restart the quiz 353 | function restartQuiz() { 354 | currentQuestion = 0; 355 | userAnswers = {}; 356 | document.getElementById('result').style.display = 'none'; 357 | document.getElementById('quiz').style.display = 'block'; 358 | displayQuestion(); // Start the quiz from the beginning 359 | } 360 | 361 | document.getElementById('restart-button').addEventListener('click', restartQuiz); 362 | 363 | displayQuestion(); 364 | 365 | 366 | -------------------------------------------------------------------------------- /images/10Sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/10Sn.png -------------------------------------------------------------------------------- /images/11Grav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/11Grav.png -------------------------------------------------------------------------------- /images/12hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/12hand.png -------------------------------------------------------------------------------- /images/13sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/13sat.png -------------------------------------------------------------------------------- /images/14sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/14sun.png -------------------------------------------------------------------------------- /images/15gal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/15gal.png -------------------------------------------------------------------------------- /images/16rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/16rocket.png -------------------------------------------------------------------------------- /images/1DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/1DE.png -------------------------------------------------------------------------------- /images/2light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/2light.png -------------------------------------------------------------------------------- /images/3UFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/3UFO.png -------------------------------------------------------------------------------- /images/4nebula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/4nebula.png -------------------------------------------------------------------------------- /images/5comet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/5comet.png -------------------------------------------------------------------------------- /images/6ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/6ST.png -------------------------------------------------------------------------------- /images/7DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/7DM.png -------------------------------------------------------------------------------- /images/8met.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/8met.png -------------------------------------------------------------------------------- /images/9BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/9BH.png -------------------------------------------------------------------------------- /images/BE3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/BE3.PNG -------------------------------------------------------------------------------- /images/BE4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/BE4.PNG -------------------------------------------------------------------------------- /images/BE5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/BE5.PNG -------------------------------------------------------------------------------- /images/Q1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q1.gif -------------------------------------------------------------------------------- /images/Q10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q10.gif -------------------------------------------------------------------------------- /images/Q11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q11.gif -------------------------------------------------------------------------------- /images/Q12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q12.gif -------------------------------------------------------------------------------- /images/Q13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q13.gif -------------------------------------------------------------------------------- /images/Q2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q2.gif -------------------------------------------------------------------------------- /images/Q3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q3.gif -------------------------------------------------------------------------------- /images/Q4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q4.gif -------------------------------------------------------------------------------- /images/Q5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q5.gif -------------------------------------------------------------------------------- /images/Q6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q6.gif -------------------------------------------------------------------------------- /images/Q7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q7.gif -------------------------------------------------------------------------------- /images/Q8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q8.gif -------------------------------------------------------------------------------- /images/Q9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/Q9.gif -------------------------------------------------------------------------------- /images/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IseeJ/CosmosPersona/94c83d06f1f6ad2ee326ed5ace2c5ef8c5ec9680/images/all.png -------------------------------------------------------------------------------- /images/gal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |Easter egg hunters...here's the hint, Find my persona!!
16 | 17 |