.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 { 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 { 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; }
📖 1. Kapsamlı Konu Anlatımı (Grammar & Expressions)
2025-2026 MEB Yeni Müfredatına göre 1. Ünitemiz olan School Life (Okul Hayatı) konusunda okulda nasıl selamlaşacağımızı, kendimizi nasıl tanıtacağımızı, okuldaki kişileri/yerleri, haftanın günlerini ve önemli milli bayramlarımızı öğreniyoruz.
A. Greetings & Introductions (Selamlaşma ve Tanışma)
- Hello / Hi: Merhaba
- Good morning: Günaydın (Sabahları söylenir)
- Good afternoon: Tünaydın / İyi öğleden sonralar
- Good evening: İyi akşamlar
- Good night: İyi geceler
- Goodbye / Bye: Hoşça kal / Görüşürüz
Kendimizi Tanıtma:
- What is your name? (Senin adın ne?) ➔ My name is Ali. (Benim adım Ali.)
- How are you? (Nasılsın?) ➔ I am fine, thank you. (İyiyim, teşekkür ederim.)
B. People and Places at School (Okuldaki Kişiler ve Yerler)
Okulumuzdaki insanları ve bölümleri tanıyıp İngilizcelerini söylemeyi öğreniyoruz.
- Kişiler: Teacher (Öğretmen), Student (Öğrenci), Friend (Arkadaş), Boy (Erkek çocuk), Girl (Kız çocuk).
- Yerler: School (Okul), Classroom (Sınıf), Schoolyard / Garden (Okul bahçesi).
C. Days of the Week (Haftanın Günleri)
İngilizcede günlerin baş harfi her zaman büyük yazılır!
- Monday (Pazartesi), Tuesday (Salı), Wednesday (Çarşamba), Thursday (Perşembe), Friday (Cuma), Saturday (Cumartesi), Sunday (Pazar).
D. National Days (Milli Günler)
Okuldaki kutlamalarımızda kullandığımız temel kelimeler:
- Republic Day: Cumhuriyet Bayramı
- Children's Day: Çocuk Bayramı
- Flag: Bayrak
🎮 3. İnteraktif Kelime Testi (Quiz)
Öğrendiğimiz kelimeleri aşağıdaki mini test ile hemen pekiştirelim!
Soru 1 / 10
Puan: 0
Soru yükleniyor...
Tebrikler, testi bitirdin! 🎉
Toplam Puanın: 0 / 100
Tekrar Oyna
const gwQuestions = [
{ q: "'Günaydın' kelimesinin İngilizcesi nedir?", options: ["Good night", "Good morning", "Goodbye", "Hello"], answer: 1 },
{ q: "'Teacher' ne demektir?", options: ["Öğrenci", "Sınıf", "Öğretmen", "Arkadaş"], answer: 2 },
{ q: "'What is your name?' sorusuna nasıl cevap veririz?", options: ["I am fine.", "My name is Ali.", "Good morning.", "Thank you."], answer: 1 },
{ q: "Haftanın ilk günü olan 'Pazartesi' İngilizcede nasıl söylenir?", options: ["Sunday", "Friday", "Tuesday", "Monday"], answer: 3 },
{ q: "'Schoolyard' kelimesinin anlamı nedir?", options: ["Okul bahçesi", "Sınıf", "Okul çantası", "Bayrak"], answer: 0 },
{ q: "Akşam yatmaya giderken annemize ne deriz?", options: ["Good afternoon", "Good morning", "Good night", "Hi"], answer: 2 },
{ q: "'Children's Day' ne anlama gelir?", options: ["Cumhuriyet Bayramı", "Öğretmenler Günü", "Çocuk Bayramı", "Okul Günü"], answer: 2 },
{ q: "'Student' kelimesinin Türkçe karşılığı nedir?", options: ["Okul", "Öğretmen", "Öğrenci", "Bahçe"], answer: 2 },
{ q: "'Cuma' günü İngilizcede nasıl yazılır?", options: ["Thursday", "Friday", "Wednesday", "Saturday"], answer: 1 },
{ q: "'Nasılsın?' diye sormak için hangisini kullanırız?", options: ["What is your name?", "How are you?", "Goodbye.", "My name is Ayşe."], answer: 1 }
];
let gwCurrentQ = 0;
let gwScore = 0;
function gwStartQuiz() {
gwCurrentQ = 0;
gwScore = 0;
document.getElementById('gw-score-screen').style.display = 'none';
document.getElementById('gw-game-screen').style.display = 'block';
gwLoadQuestion();
}
function gwLoadQuestion() {
document.getElementById('gw-progress').innerText = `Soru ${gwCurrentQ + 1} / ${gwQuestions.length}`;
document.getElementById('gw-score').innerText = `Puan: ${gwScore}`;
const qData = gwQuestions[gwCurrentQ];
document.getElementById('gw-question-text').innerText = qData.q;
const optionsBox = document.getElementById('gw-options-box');
optionsBox.innerHTML = '';
qData.options.forEach((opt, index) => {
const btn = document.createElement('button');
btn.className = 'gw-option';
btn.innerText = opt;
btn.onclick = () => gwCheckAnswer(btn, index, qData.answer);
optionsBox.appendChild(btn);
});
}
function gwCheckAnswer(btn, selected, correct) {
const buttons = document.querySelectorAll('.gw-option');
buttons.forEach(b => b.disabled = true); // Butonları kilitle
if (selected === correct) {
btn.classList.add('correct');
gwScore += 10;
} else {
btn.classList.add('wrong');
buttons[correct].classList.add('correct'); // Doğruyu göster
}
setTimeout(() => {
gwCurrentQ++;
if (gwCurrentQ < gwQuestions.length) {
gwLoadQuestion();
} else {
gwEndQuiz();
}
}, 1200);
}
function gwEndQuiz() {
document.getElementById('gw-game-screen').style.display = 'none';
document.getElementById('gw-score-screen').style.display = 'block';
document.getElementById('gw-final-score').innerText = gwScore;
}
// Quiz'i başlat
gwStartQuiz();
Henuz yorum yapilmamis. Ilk yorumu siz yapin!
Yorum yapmak icin giris yapin veya uye olun.