const text = "(مانجا) كاتبة ورسامة قصص مصورة"; let i = 0; function typeWriter() { if (i < text.length) { document.getElementById("typewriter").innerHTML += text.charAt(i); i++; setTimeout(typeWriter, 100); // سرعة الكتابة بالملي ثانية } } window.onload = typeWriter; // يبدأ التأثير عند تحميل الصفحة // البحث عن كل الصور داخل قسم "لوحاتي" const images = document.querySelectorAll('.لوحاتي img'); images.forEach(img => { img.onclick = () => { // إنشاء عنصر خلفية سوداء const modal = document.createElement('div'); modal.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; z-index: 1000; cursor: zoom-out; `; // إنشاء نسخة مكبرة من الصورة const fullImg = document.createElement('img'); fullImg.src = img.src; fullImg.style.maxWidth = '90%'; fullImg.style.maxHeight = '90%'; modal.appendChild(fullImg); document.body.appendChild(modal); // إغلاق النافذة عند الضغط في أي مكان modal.onclick = () => modal.remove(); }; }); // كود JS (من الإجابات السابقة): images.forEach(img => { img.onclick = () => { // ... كود إنشاء النافذة المكبرة هنا ... }; });