عدد ساعات نوم الأطفال من عمر سنة واحدة الى عمر 16 سنة

مہجہرد إنہسہآن

ادارة الموقع
إنضم
27 أغسطس 2009
المشاركات
40,634
مستوى التفاعل
1,619
النقاط
113
العمر
43
الإقامة
الطفيلة الهاشمية
عدد ساعات نوم الأطفالعربي



peaceful-sleep2.jpg








في عمر أسبوع

النهار: 8 ساعات.

· الليل: 8.5 ساعات.





في عمر أربعة أسابيع

النهار: 6.75 ساعات.

· الليل: 8.75 ساعات.





في عمر ثلاثة أشهر

النهار: 5 ساعات

الليل: 10 ساعات.







في عمر ستَّة أشهر

النهار: 4 ساعات.

الليل: 10 ساعات.







في عمر تسعة أشهر

النهار: 2.75 ساعة.

الليل: 11.25 ساعة.







في عمر سنة واحدة

النهار: 2.5 ساعة.

الليل: 11.5 ساعة.







في عمر سنتين

النهار: 1.25 ساعة.

الليل: 11.75 ساعة.





في عمر 3 سنوات

النهار: 1 ساعة.

الليل: 11 ساعة.





في عمر 4 سنوات

الليل: 11.5 ساعة.





في عمر 5 سنوات

الليل: 11 ساعة.





في عمر 6 سنوات

الليل: 10.75 ساعات.





في عمر 7 سنوات

الليل: 10.5 ساعات.





في عمر 8 سنوات

الليل: 10.25 ساعات.





في عمر 9 سنوات

الليل: 10 ساعات.





في عمر 10 سنوات

الليل: 9.75 ساعات.





في عمر 11 سنة

الليل: 9.5 ساعات.





في عمر 12 سنة

الليل: 9.25 ساعات.





في عمر 13 سنة

الليل: 9.25 ساعات.





في عمر 14 سنة

الليل: 9 ساعات.





في عمر 15 سنة

الليل: 8.75 ساعات.





في عمر 16 سنة

الليل: 8.5 ساعات.

 
const config = { siteUrl: 'https://www.jnob-jo.com', whitelist: [ 'youtube.com', 'youtu.be', 'facebook.com', 'twitter.com', 'iinkor.com', 'forum.iinkor.com', 'instagram.com', 'up.jnob-jo.com', 'drive.google.com', 'docs.google.com', 'apps.moe.gov.jo', 'nccd.gov.jo''instagram.com' ] }; function isWhitelisted(url) { return config.whitelist.some(domain => url.includes(domain)); } function isExternalLink(url) { try { const urlObj = new URL(url); const siteUrlObj = new URL(config.siteUrl); return urlObj.hostname !== siteUrlObj.hostname; } catch (e) { return false; } } function convertExternalLink(url, replaceWithStars = false) { if (!url) return url; // تجاهل الروابط الداخلية والمستثناة if (!isExternalLink(url) || isWhitelisted(url)) { return url; } if (replaceWithStars) { return '****'; } return config.siteUrl; } function processBBCodeLinks() { const textNodes = document.evaluate( "//text()[contains(., '[URL')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /\[URL[^\]]*\](https?:\/\/[^\[]+)\[\/URL\]/g, (match, url) => { const isUrlAlone = text.trim() === match; const newUrl = convertExternalLink(url.trim(), isUrlAlone); return `[URL]${newUrl}[/URL]`; } ); if (text !== node.textContent) { node.textContent = text; } } } function processPlainTextLinks() { const textNodes = document.evaluate( "//text()[contains(., 'http://') or contains(., 'https://')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); for (let i = 0; i < textNodes.snapshotLength; i++) { const node = textNodes.snapshotItem(i); let text = node.textContent; text = text.replace( /(https?:\/\/[^\s\[\]<>"']+)/g, (match) => { // تحقق مما إذا كان الرابط وحده في النص const isUrlAlone = text.trim() === match; return convertExternalLink(match, isUrlAlone); } ); if (text !== node.textContent) { node.textContent = text; } } } function processPageLinks() { const links = document.querySelectorAll('.message-body a, .p-body-pageContent a'); links.forEach(link => { const href = link.getAttribute('href'); if (href) { const isUrlAlone = link.textContent.trim() === href; const newHref = convertExternalLink(href, isUrlAlone); if (newHref !== href) { link.setAttribute('href', newHref); if (isUrlAlone) { link.textContent = '****'; } link.classList.add('external-redirect'); } } }); processBBCodeLinks(); processPlainTextLinks(); } document.addEventListener('DOMContentLoaded', processPageLinks); document.addEventListener('XFContentLoaded', processPageLinks); const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.addedNodes && mutation.addedNodes.length > 0) { processPageLinks(); } }); }); observer.observe(document.body, { childList: true, subtree: true });