.gw-section { margin-bottom: 35px; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.gw-title { color: #2c3e50; font-weight: 800; font-size: 28px; border-bottom: 3px solid #e74c3c; padding-bottom: 10px; margin-bottom: 25px; }
.gw-h2 { color: #2c3e50; font-size: 22px; margin-top: 0; margin-bottom: 15px; }
.gw-grammar-box { background: #fff; padding: 15px; border-left: 4px solid #3498db; margin-bottom: 15px; border-radius: 0 8px 8px 0; }
.gw-vocab-list { column-count: 2; column-gap: 40px; }
@media (max-width: 600px) { .gw-vocab-list { column-count: 1; } }
.gw-vocab-item { padding: 5px 0; border-bottom: 1px solid #eee; }
/* Quiz Game Styles */
#gw-quiz-container-20 { background: #fff; border-radius: 10px; padding: 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.gw-question { font-size: 20px; font-weight: bold; margin-bottom: 20px; color: #2c3e50; }
.gw-options { display: flex; flex-direction: column; gap: 10px; }
.gw-option { background: #3498db; color: white; padding: 12px; border-radius: 8px; cursor: pointer; transition: 0.2s; font-weight: 600; border: none; width: 100%; font-size: 16px; }
.gw-option:hover { background: #2980b9; transform: translateY(-2px); }
.gw-option.correct { background: #27ae60 !important; }
.gw-option.wrong { background: #e74c3c !important; }
#gw-score-screen-20 { display: none; }
.gw-btn-restart { margin-top: 20px; background: #f39c12; color: #fff; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: bold; }
🎮 3. İnteraktif Kelime Testi (Quiz)
Aktiviteleri ve "-ing" kurallarını test edelim!
Soru 1 / 10
Puan: 0
Soru yükleniyor...
Harika iş çıkardın! 🎉
Toplam Puanın: 0 / 100
Tekrar Oyna
const gwQuestions20 = [
{ q: "'Bisiklete binmek' eyleminin İngilizcesi nedir?", options: ["Playing chess", "Riding a bike", "Drawing pictures", "Planting trees"], answer: 1 },
{ q: "'Enjoy' kelimesinin Türkçe karşılığı nedir?", options: ["Nefret etmek", "Çok sevmek", "Zevk almak", "Sevmemek"], answer: 2 },
{ q: "Aşağıdaki cümlelerden hangisi GRAMER olarak DOĞRUDUR?", options: ["I like play chess.", "I like to playing chess.", "I like played chess.", "I like playing chess."], answer: 3 },
{ q: "'I hate drawing pictures' cümlesinin anlamı nedir?", options: ["Resim çizmeyi severim.", "Resim çizmeyi sevmem.", "Resim çizmekten nefret ederim.", "Resim çizmeyi çok severim."], answer: 2 },
{ q: "'Reading comics' ne demektir?", options: ["Çizgi roman okumak", "Kitap yazmak", "Müzik dinlemek", "Çizgi film izlemek"], answer: 0 },
{ q: "'Ağaç dikmek' anlamına gelen İngilizce ifade hangisidir?", options: ["Flying a kite", "Planting trees", "Riding a bike", "Watching cartoons"], answer: 1 },
{ q: "'Do you like flying a kite?' sorusuna olumsuz nasıl cevap verilir?", options: ["Yes, I do.", "I like kites.", "No, I don't.", "Yes, I am."], answer: 2 },
{ q: "Boşluğa ne gelmelidir? 'I love ________ to music.'", options: ["listen", "listened", "listens", "listening"], answer: 3 },
{ q: "'Watching cartoons' kelimesinin Türkçe anlamı nedir?", options: ["Film izlemek", "Televizyon izlemek", "Çizgi film izlemek", "Resim çizmek"], answer: 2 },
{ q: "'Dislike' kelimesinin anlamı nedir?", options: ["Nefret etmek", "Çok sevmek", "Sevmemek", "Zevk almak"], answer: 2 }
];
let gwCurrentQ20 = 0;
let gwScore20 = 0;
function gwStartQuiz20() {
gwCurrentQ20 = 0;
gwScore20 = 0;
document.getElementById('gw-score-screen-20').style.display = 'none';
document.getElementById('gw-game-screen-20').style.display = 'block';
gwLoadQuestion20();
}
function gwLoadQuestion20() {
document.getElementById('gw-progress-20').innerText = `Soru ${gwCurrentQ20 + 1} / ${gwQuestions20.length}`;
document.getElementById('gw-score-20').innerText = `Puan: ${gwScore20}`;
const qData = gwQuestions20[gwCurrentQ20];
document.getElementById('gw-question-text-20').innerText = qData.q;
const optionsBox = document.getElementById('gw-options-box-20');
optionsBox.innerHTML = '';
qData.options.forEach((opt, index) => {
const btn = document.createElement('button');
btn.className = 'gw-option';
btn.innerText = opt;
btn.onclick = () => gwCheckAnswer20(btn, index, qData.answer);
optionsBox.appendChild(btn);
});
}
function gwCheckAnswer20(btn, selected, correct) {
const buttons = document.getElementById('gw-options-box-20').querySelectorAll('.gw-option');
buttons.forEach(b => b.disabled = true);
if (selected === correct) {
btn.classList.add('correct');
gwScore20 += 10;
} else {
btn.classList.add('wrong');
buttons[correct].classList.add('correct');
}
setTimeout(() => {
gwCurrentQ20++;
if (gwCurrentQ20 < gwQuestions20.length) {
gwLoadQuestion20();
} else {
gwEndQuiz20();
}
}, 1200);
}
function gwEndQuiz20() {
document.getElementById('gw-game-screen-20').style.display = 'none';
document.getElementById('gw-score-screen-20').style.display = 'block';
document.getElementById('gw-final-score-20').innerText = gwScore20;
}
gwStartQuiz20();
Henuz yorum yapilmamis. Ilk yorumu siz yapin!
Yorum yapmak icin giris yapin veya uye olun.