.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-10 { 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-10 { 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. Konu Anlatımı (Grammar & Expressions)
Bu ünitemizde sınıfımızdaki eşyaları, öğretmenimizin İngilizce verdiği komutları, okul derslerimizi ve yılın mevsimlerini öğreniyoruz.
A. Classroom Objects (Sınıf Eşyaları)
Sınıfımızda en çok karşılaştığımız eşyaların İngilizceleri:
- Board: Yazı tahtası
- Desk: Sıra / Çalışma masası
- Bookcase: Kitaplık
- Dictionary: Sözlük
- Map: Harita
What is this? (Bu nedir?) ➔ It is a dictionary. (O bir sözlüktür.)
B. Classroom Instructions (Sınıf İçi Yönergeler)
Öğretmenlerimizin derste bize söylediği komutları anlıyor ve uyguluyoruz:
- Stand up: Ayağa kalk
- Sit down: Otur
- Open your book: Kitabını aç
- Close your book: Kitabını kapat
- Listen to me: Beni dinle
- Look at the board: Tahtaya bak
- Be quiet: Sessiz ol
Not: Bir şeyi yapmamamızı istediklerinde cümlenin başına "Don't" eklerler. (Don't talk! - Konuşma!)
C. School Subjects & Seasons (Dersler ve Mevsimler)
Okuldaki ders programımızdaki dersler ve yılın 4 mevsimi:
- Dersler: Maths (Matematik), Science (Fen Bilimleri), English (İngilizce), Art (Görsel Sanatlar), P.E. (Beden Eğitimi), Music (Müzik).
- Mevsimler: Spring (İlkbahar), Summer (Yaz), Autumn (Sonbahar), Winter (Kış).
- My favourite subject is Art. (Benim en sevdiğim ders Görsel Sanatlar'dır.)
- My favourite season is Summer. (Benim en sevdiğim mevsim Yaz'dır.)
🎮 3. İnteraktif Kelime Testi (Quiz)
Sınıf yönergelerini ve dersleri ne kadar iyi öğrendiğini test et!
Soru 1 / 10
Puan: 0
Soru yükleniyor...
Harika iş çıkardın! 🎉
Toplam Puanın: 0 / 100
Tekrar Oyna
const gwQuestions10 = [
{ q: "'Stand up' ne demektir?", options: ["Otur", "Ayağa kalk", "Kitabını aç", "Sessiz ol"], answer: 1 },
{ q: "Aşağıdakilerden hangisi bir mevsimdir?", options: ["Maths", "Board", "Summer", "Dictionary"], answer: 2 },
{ q: "'Maths' kelimesinin Türkçe karşılığı nedir?", options: ["Fen Bilimleri", "Beden Eğitimi", "Müzik", "Matematik"], answer: 3 },
{ q: "'Sessiz ol' yönergesinin İngilizcesi nedir?", options: ["Look at the board", "Sit down", "Be quiet", "Listen to me"], answer: 2 },
{ q: "'Bookcase' ne anlama gelir?", options: ["Kitaplık", "Harita", "Sözlük", "Yazı tahtası"], answer: 0 },
{ q: "'Autumn' hangi mevsimdir?", options: ["İlkbahar", "Yaz", "Sonbahar", "Kış"], answer: 2 },
{ q: "Aşağıdaki kelimelerden hangisi bir sınıf eşyası DEĞİLDİR?", options: ["Desk", "Winter", "Map", "Board"], answer: 1 },
{ q: "'Kitabını aç' yönergesi İngilizcede nasıl söylenir?", options: ["Open your book", "Close your book", "Stand up", "Be quiet"], answer: 0 },
{ q: "'P.E.' hangi dersin kısaltmasıdır?", options: ["Matematik", "Görsel Sanatlar", "Beden Eğitimi", "Fen Bilimleri"], answer: 2 },
{ q: "Öğretmen tahtaya bakmanızı istediğinde İngilizce ne der?", options: ["Listen to me", "Look at the board", "Sit down", "Open your book"], answer: 1 }
];
let gwCurrentQ10 = 0;
let gwScore10 = 0;
function gwStartQuiz10() {
gwCurrentQ10 = 0;
gwScore10 = 0;
document.getElementById('gw-score-screen-10').style.display = 'none';
document.getElementById('gw-game-screen-10').style.display = 'block';
gwLoadQuestion10();
}
function gwLoadQuestion10() {
document.getElementById('gw-progress-10').innerText = `Soru ${gwCurrentQ10 + 1} / ${gwQuestions10.length}`;
document.getElementById('gw-score-10').innerText = `Puan: ${gwScore10}`;
const qData = gwQuestions10[gwCurrentQ10];
document.getElementById('gw-question-text-10').innerText = qData.q;
const optionsBox = document.getElementById('gw-options-box-10');
optionsBox.innerHTML = '';
qData.options.forEach((opt, index) => {
const btn = document.createElement('button');
btn.className = 'gw-option';
btn.innerText = opt;
btn.onclick = () => gwCheckAnswer10(btn, index, qData.answer);
optionsBox.appendChild(btn);
});
}
function gwCheckAnswer10(btn, selected, correct) {
const buttons = document.getElementById('gw-options-box-10').querySelectorAll('.gw-option');
buttons.forEach(b => b.disabled = true);
if (selected === correct) {
btn.classList.add('correct');
gwScore10 += 10;
} else {
btn.classList.add('wrong');
buttons[correct].classList.add('correct');
}
setTimeout(() => {
gwCurrentQ10++;
if (gwCurrentQ10 < gwQuestions10.length) {
gwLoadQuestion10();
} else {
gwEndQuiz10();
}
}, 1200);
}
function gwEndQuiz10() {
document.getElementById('gw-game-screen-10').style.display = 'none';
document.getElementById('gw-score-screen-10').style.display = 'block';
document.getElementById('gw-final-score-10').innerText = gwScore10;
}
gwStartQuiz10();
Henuz yorum yapilmamis. Ilk yorumu siz yapin!
Yorum yapmak icin giris yapin veya uye olun.