HTMLify
script.js
Views: 4 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | const cardsContainer = document.getElementById('cards-container'); const prevBtn = document.getElementById('prev'); const nextBtn = document.getElementById('next'); const currentEl = document.getElementById('current'); const showBtn = document.getElementById('show'); const hideBtn = document.getElementById('hide'); const questionEl = document.getElementById('question'); const answerEl = document.getElementById('answer'); const addCardBtn = document.getElementById('add-card'); const clearBtn = document.getElementById('clear'); const addContainer = document.getElementById('add-container'); // Keep track of current card let currentActiveCard = 0; // Store DOM cards const cardsEl = []; // Store card data const cardsData = getCardsData(); // const cardsData = [ // { // question: 'What must a variable begin with?', // answer: 'A letter, $ or _' // }, // { // question: 'What is a variable?', // answer: 'Container for a piece of data' // }, // { // question: 'Example of Case Sensitive Variable', // answer: 'thisIsAVariable' // } // ]; // Create all cards function createCards() { cardsData.forEach((data, index) => createCard(data, index)); } // Create a single card in DOM function createCard(data, index) { const card = document.createElement('div'); card.classList.add('card'); if (index === 0) { card.classList.add('active'); } card.innerHTML = ` <div class="inner-card"> <div class="inner-card-front"> <p> ${data.question} </p> </div> <div class="inner-card-back"> <p> ${data.answer} </p> </div> </div> `; card.addEventListener('click', () => card.classList.toggle('show-answer')); // Add to DOM cards cardsEl.push(card); cardsContainer.appendChild(card); updateCurrentText(); } // Show number of cards function updateCurrentText() { currentEl.innerText = `${currentActiveCard + 1}/${cardsEl.length}`; } // Get cards from local storage function getCardsData() { const cards = JSON.parse(localStorage.getItem('cards')); return cards === null ? [] : cards; } // Add card to local storage function setCardsData(cards) { localStorage.setItem('cards', JSON.stringify(cards)); window.location.reload(); } createCards(); // Event listeners // Next button nextBtn.addEventListener('click', () => { cardsEl[currentActiveCard].className = 'card left'; currentActiveCard = currentActiveCard + 1; if (currentActiveCard > cardsEl.length - 1) { currentActiveCard = cardsEl.length - 1; } cardsEl[currentActiveCard].className = 'card active'; updateCurrentText(); }); // Prev button prevBtn.addEventListener('click', () => { cardsEl[currentActiveCard].className = 'card right'; currentActiveCard = currentActiveCard - 1; if (currentActiveCard < 0) { currentActiveCard = 0; } cardsEl[currentActiveCard].className = 'card active'; updateCurrentText(); }); // Show add container showBtn.addEventListener('click', () => addContainer.classList.add('show')); // Hide add container hideBtn.addEventListener('click', () => addContainer.classList.remove('show')); // Add new card addCardBtn.addEventListener('click', () => { const question = questionEl.value; const answer = answerEl.value; if (question.trim() && answer.trim()) { const newCard = { question, answer }; createCard(newCard); questionEl.value = ''; answerEl.value = ''; addContainer.classList.remove('show'); cardsData.push(newCard); setCardsData(cardsData); } }); // Clear cards button clearBtn.addEventListener('click', () => { localStorage.clear(); cardsContainer.innerHTML = ''; window.location.reload(); }); |