Table of Contents
Start with a simple solution
What to do on mobile?
So we need to use JavaScript
Enhanced fixed body method
Home Web Front-end CSS Tutorial Prevent Page Scrolling When a Modal is Open

Prevent Page Scrolling When a Modal is Open

Apr 20, 2025 am 10:38 AM

Prevent page scrolling when the modal box is opened

Have you ever encountered this situation: Open a modal box, scroll in it, close it, and the page jumps to another location?

This is because the modal box is just an element on the page, it may remain in place, but the rest of the page is still functioning properly.

Sometimes this doesn't matter, such as when the screen height is exactly equal to the viewport height. But in other cases, a scrolling problem occurs. The good news is that we can prevent this with some CSS (and JavaScript) tricks.

Start with a simple solution

We can significantly reduce the problem of page scrolling when the modal box is opened by setting the height of the entire body to the full viewport height and hiding vertical overflow when the modal box is opened:

 <code>body.modal-open { height: 100vh; overflow-y: hidden; }</code>
Copy after login

This is good, but if we have scrolled through the page elements before opening the modal box, there will be a slight horizontal rearrangement. The viewport width increases by about 15 pixels, which is exactly the width of the scrollbar. Let's adjust the right fill of the body a little to avoid this.

 <code>body { height: 100vh; overflow-y: hidden; padding-right: 15px; /* 避免宽度重排*/ }</code>
Copy after login

Note that the height of the modal box must be less than the viewport height for this method to work. Otherwise, the scroll bar on the body will be necessary.

What to do on mobile?

This solution works well on both desktop and Android mobile. However, iOS Safari needs more processing because the body still scrolls when the modal box opens when clicking and moving on the touch screen.

We can set the body to fixed positioning as a solution:

 <code>body { position: fixed; }</code>
Copy after login
Copy after login

It's OK now! When touching the screen, the body will not respond. However, there is still a "small" problem here. Assuming the modal box trigger is at the bottom of the page, we click to open it. very good! But now we automatically scroll to the top of the screen, which is as confusing as the scrolling behavior we are trying to solve.

Oops!

So we need to use JavaScript

We can use JavaScript to avoid the bubble of touch events. We all know that there should be a background layer when the modal box is opened. Unfortunately, in iOS, stopPropagation is a bit awkward to work with touch events. But preventDefault works very well. This means we have to add event listeners to each DOM node included in the modal box—not just on the background or modal box layer. The good news is that many JavaScript libraries can do this, including the proven jQuery.

One more thing: What if we need to scroll inside the modal box? We still need to trigger the response to the touch event, but we still need to stop the bubbling when it reaches the top or bottom of the modal box. This seems very complicated, so we haven't completely solved the problem.

Enhanced fixed body method

What we are using is:

 <code>body { position: fixed; }</code>
Copy after login
Copy after login

If we know the top position of scrolling and add it to our CSS, the body doesn't scroll back to the top of the screen, so the problem is solved. We can use JavaScript to calculate the scroll top and add that value to the body style:

 // When the modal box is displayed, we need a fixed body
document.body.style.position = 'fixed';
document.body.style.top = `-${window.scrollY}px`;

// When the modal box is hidden, we need to keep it at the top of the scroll position document.body.style.position = '';
document.body.style.top = '';
Copy after login

This works, but there is still a little leak after the modal box is closed. Specifically, when the modal box is open and the body is set to fixed, the page seems to have lost its scrolling position. So we have to retrieve the location. Let's modify our JavaScript to solve this problem.

 // When the modal box is hidden...
const scrollY = document.body.style.top;
document.body.style.position = '';
document.body.style.top = '';
window.scrollTo(0, parseInt(scrollY || '0') * -1);
Copy after login

nailed it! The body no longer scrolls when the modal box is open and remains in the scroll position when the modal box is open and closed. Long live!

Prevent Page Scrolling When a Modal is Open

The above is the detailed content of Prevent Page Scrolling When a Modal is Open. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Vue 3 Vue 3 Apr 02, 2025 pm 06:32 PM

It&#039;s out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

Can you get valid CSS property values from the browser? Can you get valid CSS property values from the browser? Apr 02, 2025 pm 06:17 PM

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That&#039;s like this.

Stacked Cards with Sticky Positioning and a Dash of Sass Stacked Cards with Sticky Positioning and a Dash of Sass Apr 03, 2025 am 10:30 AM

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I&#039;d say "website" fits better than "mobile app" but I like this framing from Max Lynch:

Using Markdown and Localization in the WordPress Block Editor Using Markdown and Localization in the WordPress Block Editor Apr 02, 2025 am 04:27 AM

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

Comparing Browsers for Responsive Design Comparing Browsers for Responsive Design Apr 02, 2025 pm 06:25 PM

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Apr 05, 2025 pm 05:51 PM

Questions about purple slash areas in Flex layouts When using Flex layouts, you may encounter some confusing phenomena, such as in the developer tools (d...

How to Use CSS Grid for Sticky Headers and Footers How to Use CSS Grid for Sticky Headers and Footers Apr 02, 2025 pm 06:29 PM

CSS Grid is a collection of properties designed to make layout easier than it’s ever been. Like anything, there&#039;s a bit of a learning curve, but Grid is

See all articles