Skip to content
  • Hakkımızda
  • Bize Ulaşın
FENBİLİMİM.COM

FENBİLİMİM.COM

Fen Bilimleri Dersi Kaynak ve Paylaşım Sitesi

  • Ana sayfa
  • 5. Sınıf
    • Konu Anlatımları
    • Fen Sunumları
    • Konu Özetleri
    • Yazılı Kağıtları
    • Çalışma Kağıtları
    • Meb Fasikülleri
    • Meb Karekod Dökümanları
  • 6. Sınıf
    • Konu Anlatımları
    • Fen Sunumları
    • Konu Özetleri (pdf)
    • Yazılı Kağıtları
    • Fen Çalışma Kağıtları
    • Meb Fasikülleri
  • 7. Sınıf
    • Konu Anlatımları
    • Fen Sunumları
    • Konu Özetleri (pdf)
    • Çalışma Kağıtları
    • Yazılı Kağıtları
    • 7.Sınıf Fasikülleri
  • 8. Sınıf
    • Konu Anlatımları
    • Fen Sunumları
    • Konu Özetleri (pdf)
    • Çalışma Kağıtları
    • Yazılı Kağıtları
    • 8.Sınıf Fasikülleri
    • LGS Çıkmış Sorular
    • LGS Özel
  • Evrak Çantası
    • Meb Senaryolar | (2025-2026) Fenbilimim
    • Maarif Modeli Evrakları (2025-2026) | Fenbilimim
    • YILLIK PLANLAR
    • GÜNLÜK PLANLAR
    • Bilim Uygulamaları Yıllık Planları
    • (DYK) Kurs ve Egzersiz Planları
    • BEP Yıllık Planları (Bireyselleştirilmiş Eğitim Planları) ve Formları
    • ZÜMRE TOPLANTI TUTANAKLARI
    • ŞÖK TOPLANTI TUTANAKLARI
    • REHBERLİK FAALİYET RAPORLARI
    • SOSYAL KULÜP EVRAKLARI
    • DÖNEM SONU-YIL SONU EVRAKLARI
    • FEN BİLİMLERİ ADAY ÖĞRETMEN FORMLARI (DOLDURULMUŞ)
  • Öğretmen Sayfası
  • Hakkımızda
  • Toggle search form

Kelime Avı Bulmaca | FenBilimim.com – Eğlenceli ve Eğitici Bulmacalar

Fen Bilimleri Kelime Avı Oluşturucu | Ücretsiz Bulmaca Yapıcı

FENBİLİMİM.COM

Fen Öğretmenlerinin Dijital Asistanı - Ücretsiz Eğitim Materyalleri

🧪 FEN BİLİMLERİ KELİME AVI BULMACASI

🧪 Fen Bilimleri Kelime Avı Oluşturucu

Öğrencileriniz için eğlenceli kelime bulmaca oyunları hazırlayın

📝 Kelime Listesi

En az 3, en fazla 15 harfli fen bilimleri kelimeleri ekleyebilirsiniz

Henüz kelime eklenmedi. Yukarıdan kelime ekleyerek başlayın!

15 ile 25 arasında bir değer seçin

🎨 Bulmaca Renk Ayarları

🔬 Kelime Avı Bulmacası

Bulmaca oluşturmak için sol taraftan kelimeler ekleyin ve "Bulmaca Oluştur" butonuna tıklayın.

🔍 Bulunacak Kelimeler:

Bulunacak Kelimeler

Şifreli Cümle

Kelimeleri bulduktan sonra kalan harflerden gizli cümleyi bulun:

🔍 Bulunacak Kelimeler

🔐 Şifreli Cümle

Kelimeleri bulduktan sonra, kalan harflerden soldan sağa doğru okuyarak gizli cümleyi bulun:

`; }function updateUnits() { const gradeSelect = document.getElementById('gradeSelect'); const unitSelect = document.getElementById('unitSelect'); const addUnitBtn = document.getElementById('addUnitBtn'); const selectedGrade = gradeSelect.value; if (selectedGrade) { unitSelect.disabled = false; unitSelect.innerHTML = ''; const units = gradeUnits[selectedGrade]; for (let unitNum in units) { const option = document.createElement('option'); option.value = unitNum; option.textContent = `${unitNum}. Ünite - ${units[unitNum].name}`; unitSelect.appendChild(option); } } else { unitSelect.disabled = true; unitSelect.innerHTML = ''; addUnitBtn.disabled = true; currentUnitWords = []; } }function loadUnitWords() { const gradeSelect = document.getElementById('gradeSelect'); const unitSelect = document.getElementById('unitSelect'); const addUnitBtn = document.getElementById('addUnitBtn'); const selectedGrade = gradeSelect.value; const selectedUnit = unitSelect.value; if (selectedGrade && selectedUnit) { currentUnitWords = gradeUnits[selectedGrade][selectedUnit].words; addUnitBtn.disabled = false; } else { currentUnitWords = []; addUnitBtn.disabled = true; } }function addUnitWords() { if (currentUnitWords.length > 0) { // Mevcut kelimelere eklenmemiş olanları ekle const newWords = currentUnitWords.filter(word => !words.includes(word)); const duplicateWords = currentUnitWords.filter(word => words.includes(word)); words.push(...newWords); updateWordList(); // Bilgi mesajı göster const gradeSelect = document.getElementById('gradeSelect'); const unitSelect = document.getElementById('unitSelect'); const gradeName = gradeSelect.options[gradeSelect.selectedIndex].text; const unitName = unitSelect.options[unitSelect.selectedIndex].text; let message = ''; if (newWords.length > 0) { message += `${gradeName} ${unitName} kelimelerinden ${newWords.length} yeni kelime eklendi!`; } if (duplicateWords.length > 0) { if (message) message += '\n\n'; message += `${duplicateWords.length} kelime zaten listede mevcut olduğu için eklenmedi:\n${duplicateWords.join(', ')}`; } if (!message) { message = 'Bu ünitede eklenecek kelime bulunamadı.'; } showMessage(message, newWords.length > 0 ? 'success' : 'info'); } }function showSolution() { const cells = document.querySelectorAll('.grid-cell'); const rows = 16; const cols = 22; // Önce tüm hücreleri temizle cells.forEach(cell => { cell.classList.remove('highlighted', 'solution-letter'); }); // Yerleştirilen kelimeleri vurgula placedWords.forEach(wordInfo => { const { word, startRow, startCol, direction } = wordInfo; for (let i = 0; i < word.length; i++) { const row = startRow + direction[0] * i; const col = startCol + direction[1] * i; const cellIndex = row * cols + col; if (cells[cellIndex]) { cells[cellIndex].classList.add('highlighted'); } } }); // Şifreli cümle harflerini farklı renkte göster if (window.hiddenSentence) { const sentenceLetters = window.hiddenSentence.replace(/\s/g, ''); let sentenceIndex = 0; for (let i = 0; i < rows; i++) { for (let j = 0; j < cols; j++) { const cellIndex = i * cols + j; const cell = cells[cellIndex]; if (cell && !cell.classList.contains('highlighted')) { if (sentenceIndex < sentenceLetters.length) { cell.classList.add('solution-letter'); sentenceIndex++; } } } } } } function hideSolution() { const cells = document.querySelectorAll('.grid-cell'); cells.forEach(cell => { cell.classList.remove('highlighted', 'solution-letter'); }); }// Enter tuşu ile kelime ekleme document.getElementById('wordInput').addEventListener('keypress', function(e) { if (e.key === 'Enter') { addWord(); } });// Renk ayarlama fonksiyonları let currentColors = { grid: '#dee2e6', cell: '#ffffff', text: '#495057' };function setGridColor(color) { currentColors.grid = color; document.getElementById('gridColorPicker').value = color; updateGridColors(); }function setCellColor(color) { currentColors.cell = color; document.getElementById('cellColorPicker').value = color; updateGridColors(); }function setTextColor(color) { currentColors.text = color; document.getElementById('textColorPicker').value = color; updateGridColors(); }function updateGridColors() { const puzzleGrid = document.getElementById('puzzleGrid'); const cells = document.querySelectorAll('.grid-cell'); // Izgara arka plan rengini güncelle puzzleGrid.style.background = currentColors.grid; // Hücre renklerini güncelle cells.forEach(cell => { if (!cell.classList.contains('highlighted') && !cell.classList.contains('solution-letter')) { cell.style.background = currentColors.cell; cell.style.color = currentColors.text; } }); }// Renk seçicileri için event listener'lar document.addEventListener('DOMContentLoaded', function() { document.getElementById('gridColorPicker').addEventListener('change', function(e) { setGridColor(e.target.value); }); document.getElementById('cellColorPicker').addEventListener('change', function(e) { setCellColor(e.target.value); }); document.getElementById('textColorPicker').addEventListener('change', function(e) { setTextColor(e.target.value); }); });// Hazır tema fonksiyonları const themes = { default: { grid: '#dee2e6', cell: '#ffffff', text: '#495057' }, ocean: { grid: '#b3e5fc', cell: '#e1f5fe', text: '#0277bd' }, forest: { grid: '#c8e6c9', cell: '#f1f8e9', text: '#2e7d32' }, sunset: { grid: '#ffcc80', cell: '#fff8e1', text: '#e65100' }, lavender: { grid: '#d1c4e9', cell: '#f3e5f5', text: '#6a1b9a' }, mint: { grid: '#b2dfdb', cell: '#e0f2f1', text: '#00695c' }, coral: { grid: '#ffab91', cell: '#fbe9e7', text: '#d84315' }, monochrome: { grid: '#e0e0e0', cell: '#fafafa', text: '#212121' } };function applyTheme(themeName) { const theme = themes[themeName]; if (theme) { currentColors = { ...theme }; // Renk seçicileri güncelle document.getElementById('gridColorPicker').value = theme.grid; document.getElementById('cellColorPicker').value = theme.cell; document.getElementById('textColorPicker').value = theme.text; // Renkleri uygula updateGridColors(); } }// Sayfa yüklendiğinde kelime listesi boş başlar window.addEventListener('load', function() { updateWordList(); });
  • DERSLER
  • Her sınıf seviyesi için özel olarak hazırlanmış kapsamlı eğitim materyalleri
  • 5. SINIF Fen bilimlerine giriş
  • 6. SINIF Temel kavramlar
  • 7. SINIF İleri düzey konular
  • 8. SINIF LGS hazırlık
  • Hızlı Erişim Paneli
  • MEB Fasikülleri
  • LGS Denemeleri
  • İnteraktif Oyunlar
  • Çalışma Kağıtları
  • 👋Hakkımızda
  • www.fenbilimim.com sitesi, 30 Temmuz 2022 tarihinde yayın hayatına başlamıştır.
  • Ortaokul Fen Bilimleri dersine yönelik kapsamlı bir kaynak sitedir. Fen Bilimleri dersine yardımcı olmak amacı ile konu anlatımları, testler ve çalışma kağıtları yer almaktadır. Temel amacımız; öğretmen ve öğrencilerimizin akademik çalışmalarında onlara yardımcı, güvenilir bir kaynak olmaktır.
  • İletişim & Sosyal Medya
  • info@fenbilimim.com
  • Instagram: @fenevim_akademi
  • Gizlilik Politikası
  • Bu platform tamamen ücretsiz bir içerik paylaşım sistemidir. Tüm bilgilerimizden ücretsiz bir şekilde faydalanabilirsiniz.

© 2022 FenBilimim.com - Tüm hakları saklıdır.Eğitimde kalite ve başarı için buradayız

Powered by PressBook WordPress theme