فهرس دروس الفصل الاول للغة العربية السنة الثالثة متوسط مقدم من موقعنا dztests الجزائرية للاختبارات والفروض بصغة pdf. يمكنكم تحميل الملف بصيغة pdf بروابط تحميل مباشرة. هذا المتصفح لا يدعم عرض ملفات PDF. ⬇️ تحميل ملف PDF function startDownload() { const btn = document.getElementById('downloadBtn'); const countdown = document.getElementById('countdown'); const link = document.getElementById('downloadLink'); const progressBarContainer = document.getElementById('progressBarContainer'); const progressBar = document.getElementById('progressBar'); const sound = document.getElementById('downloadSound'); let timeLeft = 5; let progress = 0; btn.disabled = true; btn.style.background = '#999'; countdown.textContent = `سيبدأ التحميل خلال ${timeLeft} ثوانٍ...`; progressBarContainer.style.display = 'block'; progressBar.style.width = '0%'; const interval = 1000; const total = 5000; const timer = setInterval(() => { timeLeft--; progress += 100 / (total / interval); progressBar.style.width = `${progress}%`; if (timeLeft > 0) { countdown.textContent = `سيبدأ التحميل خلال ${timeLeft} ثوانٍ...`; } else { clearInterval(timer); countdown.textContent = 'جاري التحميل...'; progressBar.style.width = '100%'; sound.play(); // تشغيل صوت التحميل link.click(); setTimeout(() => { countdown.textContent = ''; btn.disabled = false; btn.style.background = '#0073aa'; progressBarContainer.style.display = 'none'; }, 2000); } }, interval); } 🔙 العودة لصفحة العربية سنة ثالثة موسط وثائق العربية سنة ثالثة متوسط body { font-family: 'Cairo', sans-serif; background: #f0f4f8; padding: 30px; } h2 { text-align: center; color: #2a8d6c; margin-bottom: 30px; } .post-list { max-width: 700px; margin: auto; display: flex; flex-direction: column; gap: 15px; } .post-card { background: #ffffff; padding: 15px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; } .post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); background: #f8fff8; } .post-icon { width: 28px; height: 28px; margin-left: 15px; flex-shrink: 0; } .post-link { text-decoration: none; color: #333; font-weight: bold; font-size: 17px; } .post-link:hover { color: #2a8d6c; } .active-post { background: #dff7e6 !important; border: 2px solid #2a8d6c; } .active-post .post-link { color: #2a8d6c; } .reading-label { font-size: 14px; color: #2a8d6c; background-color: #e8fcef; padding: 4px 8px; border-radius: 6px; margin-right: 10px; } @media (max-width: 600px) { .post-card { flex-direction: column; align-items: flex-start; gap: 5px; } .post-icon { width: 24px; height: 24px; margin-left: 10px; } } 📚 وثائق العربية سنة ثالثة متوسط جاري تحميل الملفات... const tagSlug = 'documents-arabe-3am'; const siteURL = 'https://dztests.com'; const currentURL = window.location.href; async function fetchPostsByTag() { try { const tagRes = await fetch(`${siteURL}/wp-json/wp/v2/tags?slug=${encodeURIComponent(tagSlug)}`); const tags = await tagRes.json(); if (!tags.length) { document.getElementById("postList").innerHTML = "لم يتم العثور على هذا الوسم."; return; } const tagId = tags[0].id; const postRes = await fetch(`${siteURL}/wp-json/wp/v2/posts?tags=${tagId}&per_page=10`); const posts = await postRes.json(); let listHTML = ""; posts.forEach(post => { const isActive = currentURL.includes(post.slug); const activeClass = isActive ? 'active-post' : ''; const readingLabel = isActive ? `✅ قيد القراءة` : ''; listHTML += ` ${post.title.rendered} ${readingLabel} `; }); document.getElementById("postList").innerHTML = listHTML; } catch (error) { document.getElementById("postList").innerHTML = "حدث خطأ أثناء تحميل المقالات."; } } fetchPostsByTag();