السنة الأولى ابتدائي

اختبارات الفصل الأول في الرياضيات للسنة الأولى ابتدائي

في هذا المقال تجدون مجموعة من اختبارات الفصل الأول في مادة الرياضيات للسنة الأولى ابتدائي، مرفقة بالتصحيح النموذجي بصيغة PDF جاهزة للتحميل والمعاينة المباشرة. تساعد هذه الفروض التلميذ على التدرّب الجيد وفهم الدروس استعدادًا للامتحانات الرسمية.

نماذج الفروض body { font-family: “Cairo”, sans-serif; background: #f9fafc; padding: 20px; } h2 { text-align: center; color: #2c3e50; } .test-list { list-style: none; padding: 0; margin: 0 auto; display: grid; gap: 15px; max-width: 800px; } .test-item { background: #fff; border-radius: 12px; padding: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; } .test-item:hover { transform: translateY(-4px); box-shadow: 0 6px 15px rgba(0,0,0,0.12); } .test-title { font-size: 18px; font-weight: bold; margin-bottom: 12px; } .actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; } .btn { flex: 1; text-align: center; padding: 12px; border-radius: 8px; font-size: 15px; font-weight: bold; cursor: pointer; border: none; transition: all 0.3s ease; position: relative; overflow: hidden; } .btn-preview { background: #3498db; color: white; } .btn-preview:hover { background: #2980b9; } .btn-download { background: #2ecc71; color: white; } .btn-download.used { background: #27ae60; animation: glow 1s infinite alternate, pulse-btn 1s infinite alternate; } @keyframes glow { from { box-shadow: 0 0 8px rgba(39, 174, 96, 0.7); } to { box-shadow: 0 0 20px rgba(39, 174, 96, 1); } } @keyframes pulse-btn { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .progress-bar { position: absolute; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, #3498db, #2ecc71); width: 0%; transition: width 1s linear; } .countdown { font-size: 14px; font-weight: bold; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: white; } #back-button { display: block; margin: 30px auto; padding: 12px 25px; background: white; color: #3498db; border-radius: 12px; text-align: center; font-weight: bold; text-decoration: none; width: fit-content; font-size: 16px; border: 2px solid #3498db; animation: pulse 2s infinite; } #back-button:hover { background: #3498db; color: white; transform: scale(1.05); } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(52, 152, 219, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); } }

📘 نماذج الفروض

  • 📄 اختبار بدون التصحيح❌ 2018-2019
    👁️ معاينة
  • ↩️ العودة لصفحة الرياضيات سنة أولى function startDownload(btn) { const testItem = btn.closest(‘.test-item’); const file = testItem.dataset.file; const bar = btn.querySelector(“.progress-bar”); const countdown = btn.querySelector(“.countdown”); const alertSound = document.getElementById(“alert-sound”); bar.style.width = “0%”; countdown.textContent = “6”; let seconds = 6; const interval = setInterval(() => { seconds–; bar.style.width = ((6 – seconds) / 6) * 100 + “%”; countdown.textContent = seconds + ” ثوانٍ”; if (seconds <= 0) { clearInterval(interval); countdown.textContent = "تحميل الآن"; btn.classList.add("used"); alertSound.play(); const link = document.createElement("a"); link.href = file; link.download = ""; document.body.appendChild(link); link.click(); document.body.removeChild(link); } }, 1000); }

اترك تعليقاً

لن يتم نشر عنوان بريدك الإلكتروني. الحقول الإلزامية مشار إليها بـ *

زر الذهاب إلى الأعلى