.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-6 { 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-6 { 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; }
const gwQuestions6 = [
{ q: "'Slide' kelimesinin Türkçe karşılığı nedir?", options: ["Salıncak", "Kaydırak", "Tahterevalli", "Oyun parkı"], answer: 1 },
{ q: "'Ben zıplayabilirim' demek için hangi cümleyi kullanırız?", options: ["I can run.", "I can't fly.", "I can jump.", "I can walk."], answer: 2 },
{ q: "'Swing' ne anlama gelir?", options: ["Koşmak", "Tahterevalli", "Kaydırak", "Salıncak"], answer: 3 },
{ q: "'Run' kelimesinin Türkçe anlamı nedir?", options: ["Yürümek", "Zıplamak", "Koşmak", "Uçmak"], answer: 2 },
{ q: "'Ben uçamam' İngilizcede nasıl söylenir?", options: ["I can't jump.", "I can't fly.", "I can run.", "I can walk."], answer: 1 },
{ q: "'İp atlamak' eyleminin İngilizcesi hangisidir?", options: ["Skip rope", "Play", "Walk", "Jump"], answer: 0 },
{ q: "'Can you run?' sorusuna olumlu bir cevap vermek için ne deriz?", options: ["No, I can't.", "Yes, I am.", "Yes, I can.", "I can jump."], answer: 2 },
{ q: "'Tahterevalli' İngilizcede nasıl söylenir?", options: ["Swing", "Slide", "Seesaw", "Playground"], answer: 2 },
{ q: "Aşağıdaki kelimelerden hangisi bir eylem (hareket) DEĞİLDİR?", options: ["Jump", "Run", "Walk", "Slide"], answer: 3 },
{ q: "'Playground' ne demektir?", options: ["Okul bahçesi", "Oyun parkı", "Oyun odası", "Sınıf"], answer: 1 }
];
let gwCurrentQ6 = 0;
let gwScore6 = 0;
function gwStartQuiz6() {
gwCurrentQ6 = 0;
gwScore6 = 0;
document.getElementById('gw-score-screen-6').style.display = 'none';
document.getElementById('gw-game-screen-6').style.display = 'block';
gwLoadQuestion6();
}
function gwLoadQuestion6() {
document.getElementById('gw-progress-6').innerText = `Soru ${gwCurrentQ6 + 1} / ${gwQuestions6.length}`;
document.getElementById('gw-score-6').innerText = `Puan: ${gwScore6}`;
const qData = gwQuestions6[gwCurrentQ6];
document.getElementById('gw-question-text-6').innerText = qData.q;
const optionsBox = document.getElementById('gw-options-box-6');
optionsBox.innerHTML = '';
qData.options.forEach((opt, index) => {
const btn = document.createElement('button');
btn.className = 'gw-option';
btn.innerText = opt;
btn.onclick = () => gwCheckAnswer6(btn, index, qData.answer);
optionsBox.appendChild(btn);
});
}
function gwCheckAnswer6(btn, selected, correct) {
const buttons = document.getElementById('gw-options-box-6').querySelectorAll('.gw-option');
buttons.forEach(b => b.disabled = true);
if (selected === correct) {
btn.classList.add('correct');
gwScore6 += 10;
} else {
btn.classList.add('wrong');
buttons[correct].classList.add('correct');
}
setTimeout(() => {
gwCurrentQ6++;
if (gwCurrentQ6 < gwQuestions6.length) {
gwLoadQuestion6();
} else {
gwEndQuiz6();
}
}, 1200);
}
function gwEndQuiz6() {
document.getElementById('gw-game-screen-6').style.display = 'none';
document.getElementById('gw-score-screen-6').style.display = 'block';
document.getElementById('gw-final-score-6').innerText = gwScore6;
}
gwStartQuiz6();
2. Sınıf 6. Ünite: At the Playground (Konu Anlatımı)
📖 1. Konu Anlatımı (Grammar & Expressions)
Oyun parkındaki oyuncakları, yapabildiğimiz ve yapamadığımız eylemleri (koşmak, zıplamak, uçmak vb.) İngilizce olarak ifade etmeyi öğreniyoruz.
A. Playground Equipment (Oyun Parkı Oyuncakları)
Oyun parkında en çok sevdiğimiz oyuncakların isimleri:
- Playground: Oyun parkı
- Slide: Kaydırak
- Swing: Salıncak
- Seesaw: Tahterevalli
B. Action Words (Eylem Kelimeleri)
Oyun oynarken yaptığımız hareketler:
- Run: Koşmak
- Jump: Zıplamak
- Walk: Yürümek
- Skip rope: İp atlamak
- Fly: Uçmak
- Play: Oynamak
C. Can ve Can't (Yapabilmek / Yapamamak)
Bir şeyi yapabildiğimizi söylerken "Can", yapamadığımızı söylerken "Can't" kelimesini kullanırız.
- I can run. (Ben koşabilirim.)
- I can jump. (Ben zıplayabilirim.)
- I can't fly. (Ben uçamam.)
- I can't skip rope. (Ben ip atlayamam.)
Soru Sorarken: "Can" kelimesini başa alırız.
- Can you run? (Koşabilir misin?) ➔ Yes, I can. (Evet, yapabilirim.) / No, I can't. (Hayır, yapamam.)
📋 2. Detaylı Kelime Listesi (Wordwall / Quizlet İçin)
Öğretmenler: Aşağıdaki listeyi kopyalayıp Wordwall'a yapıştırarak saniyeler içinde çark veya eşleştirme oyunu oluşturabilirsiniz.
Playground = Oyun parkı
Slide = Kaydırak
Swing = Salıncak
Seesaw = Tahterevalli
Run = Koşmak
Jump = Zıplamak
Walk = Yürümek
Skip rope = İp atlamak
Fly = Uçmak
Play = Oynamak
Can = Yapabilmek
Can't = Yapamamak
Let's go = Hadi gidelim
🎮 3. İnteraktif Kelime Testi (Quiz)
Oyun parkı kelimelerini ve yeteneklerini test et!
Soru 1 / 10
Puan: 0
Soru yükleniyor...
Harika iş çıkardın! 🎉
Toplam Puanın: 0 / 100
Tekrar Oyna📺 4. Konu Anlatım ve Animasyon Videoları
Oyun parkındaki hareketleri ve "Can / Can't" kurallarını eğlenceli videolarla izleyelim:
Henuz yorum yapilmamis. Ilk yorumu siz yapin!
Yorum yapmak icin giris yapin veya uye olun.