١٥ ديسمبر ٢٠٢١

أحجام النوافذ والتمرير

كيف نجد عرض وارتفاع نافذة المتصفح؟ كيف نحصل على العرض والارتفاع الكاملين للوثيقة ، بما في ذلك الجزء المسحوب؟ كيف ننتقل الصفحة باستخدام جافا سكريبت؟

For this type of information, we can use the root document element document.documentElement, that corresponds to the <html> tag. But there are additional methods and peculiarities to consider.

عرض / ارتفاع النافذة

To get window width and height, we can use the clientWidth/clientHeight of document.documentElement:

على سبيل المثال ، يعرض هذا الزر ارتفاع النافذة:

Not window.innerWidth/innerHeight

If there exists a scrollbar, and it occupies some space, clientWidth/clientHeight provide the width/height without it (subtract it). In other words, they return the width/height of the visible part of the document, available for the content.

window.innerWidth/innerHeight includes the scrollbar.

إذا كان هناك شريط تمرير ، ويشغل بعض المساحة ، فإن هذين الخطين يعرضان قيمًا مختلفة:

alert(window.innerWidth); // full window width
alert(document.documentElement.clientWidth); // window width minus the scrollbar

In most cases, we need the available window width in order to draw or position something within scrollbars (if there are any), so we should use documentElement.clientHeight/clientWidth.

يرجى ملاحظة: قد تعمل خصائص الهندسة عالية المستوى بشكل مختلف قليلاً عندما لا يكون هناك <! DOCTYPE HTML> `في HTML. الأشياء الغريبة ممكنة.

في HTML الحديثة يجب أن نكتب دائمًا “DOCTYPE”.

عرض / ارتفاع الوثيقة

Theoretically, as the root document element is document.documentElement, and it encloses all the content, we could measure the document’s full size as document.documentElement.scrollWidth/scrollHeight.

But on that element, for the whole page, these properties do not work as intended. In Chrome/Safari/Opera, if there’s no scroll, then documentElement.scrollHeight may be even less than documentElement.clientHeight! Weird, right?

للحصول على ارتفاع المستند بشكل موثوق ، يجب أن نأخذ الحد الأقصى من هذه الخصائص:

let scrollHeight = Math.max(
  document.body.scrollHeight,
  document.documentElement.scrollHeight,
  document.body.offsetHeight,
  document.documentElement.offsetHeight,
  document.body.clientHeight,
  document.documentElement.clientHeight
);

alert('Full document height, with scrolled out part: ' + scrollHeight);

لما ذلك؟ من الأفضل ألا تسأل. هذه التناقضات تأتي من العصور القديمة ، وليس منطق “ذكي”.

احصل على التمرير الحالي

DOM elements have their current scroll state in their scrollLeft/scrollTop properties.

For document scroll, document.documentElement.scrollLeft/scrollTop works in most browsers, except older WebKit-based ones, like Safari (bug 5991), where we should use document.body instead of document.documentElement.

Luckily, we don’t have to remember these peculiarities at all, because the scroll is available in the special properties, window.pageXOffset/pageYOffset:

alert('Current scroll from the top: ' + window.pageYOffset);
alert('Current scroll from the left: ' + window.pageXOffset);

هذه الخصائص للقراءة فقط.

التمرير: التمرير إلى التمرير التمرير التمرير العرضي

مهم:

To scroll the page with JavaScript, its DOM must be fully built.

For instance, if we try to scroll the page with a script in <head>, it won’t work.

يمكن تمرير العناصر العادية عن طريق تغيير التمرير / التمرير لليسار.

We can do the same for the page using document.documentElement.scrollTop/scrollLeft (except Safari, where document.body.scrollTop/Left should be used instead).

Alternatively, there’s a simpler, universal solution: special methods window.scrollBy(x,y) and window.scrollTo(pageX,pageY).

  • طريقة التمرير (x، y) 'تقوم بتمرير الصفحة * بالنسبة إلى موقعها الحالي *. على سبيل المثال ، يؤديالتمرير (0،10)إلى تمرير الصفحة10 بكسل` لأسفل.

    `` online يوضح الزر أدناه هذا:

    ``

  • طريقة التمرير (pageX ، pageY) تقوم بتمرير الصفحة _ إلى إحداثيات مطلقة _ ، بحيث يكون للزاوية العلوية اليسرى للجزء المرئي إحداثيات ((pageX ، pageY) بالنسبة إلى الزاوية العلوية اليسرى للمستند. الأمر أشبه بإعداد التمرير الأيسر / التمرير العلوي.

    للتمرير إلى البداية ، يمكننا استخدام التمرير (0،0).

تعمل هذه الطرق لجميع المتصفحات بنفس الطريقة.

scrollIntoView

For completeness, let’s cover one more method: elem.scrollIntoView(top).

يؤدي استدعاء elem.scrollIntoView (أعلى) إلى تمرير الصفحة لإظهار elem. لها حجة واحدة:

  • If top=true (that’s the default), then the page will be scrolled to make elem appear on the top of the window. The upper edge of the element will be aligned with the window top.
  • If top=false, then the page scrolls to make elem appear at the bottom. The bottom edge of the element will be aligned with the window bottom.

The button below scrolls the page to position itself at the window top:

And this button scrolls the page to position itself at the bottom:

منع التمرير

Sometimes we need to make the document “unscrollable”. For instance, when we need to cover the page with a large message requiring immediate attention, and we want the visitor to interact with that message, not with the document.

To make the document unscrollable, it’s enough to set document.body.style.overflow = "hidden". The page will “freeze” at its current scroll position.

جربها:

The first button freezes the scroll, while the second one releases it.

We can use the same technique to freeze the scroll for other elements, not just for document.body.

The drawback of the method is that the scrollbar disappears. If it occupied some space, then that space is now free and the content “jumps” to fill it.

That looks a bit odd, but can be worked around if we compare clientWidth before and after the freeze. If it increased (the scrollbar disappeared), then add padding to document.body in place of the scrollbar to keep the content width the same.

الملخص

الهندسة:

  • Width/height of the visible part of the document (content area width/height): document.documentElement.clientWidth/clientHeight

  • Width/height of the whole document, with the scrolled out part:

    let scrollHeight = Math.max(
      document.body.scrollHeight,
      document.documentElement.scrollHeight,
      document.body.offsetHeight,
      document.documentElement.offsetHeight,
      document.body.clientHeight,
      document.documentElement.clientHeight
    );

التمرير:

  • قراءة التمرير الحالي: window.pageYOffset / pageXOffset.

  • تغيير التمرير الحالي:

    • window.scrollTo (pageX ، pageY) – الإحداثيات المطلقة ،
    • window.scrollBy (x، y) – انتقل نسبيًا إلى المكان الحالي ،
    • elem.scrollIntoView (أعلى) – قم بالتمرير لجعل elem مرئيًا (محاذاة مع الجزء العلوي / السفلي من النافذة).
خريطة الدورة التعليمية

التعليقات

إقرأ هذا قبل أن تضع تعليقًا…
  • إذا كان لديك اقتراحات أو تريد تحسينًا - من فضلك من فضلك إفتح موضوعًا فى جيتهاب أو شارك بنفسك بدلًا من التعليقات.
  • إذا لم تستطع أن تفهم شيئّا فى المقال - وضّح ماهو.
  • إذا كنت تريد عرض كود استخدم عنصر <code> ، وللكثير من السطور استخدم <pre>، ولأكثر من 10 سطور استخدم (plnkr, JSBin, codepen…)