QuickAnswer
by

Fixed HTML modal window background

Fixed HTML modal window background

Implemented in JavaScript. Fix the background of the modal window.

reserve

const _scrollElm    = document.scrollingElement;
let _scrollElmTop    = 0;

fixation

_scrollElmTop = _scrollElm.scrollTop;
_scrollElm.style.position = 'fixed';
_scrollElm.style.top = -_scrollElmTop + 'px';
_scrollElm.style.width = '100%';

Release of fixation

_scrollElm.style.position = '';
_scrollElm.style.top = '';
_scrollElm.style.width = '';
window.scroll({top:_scrollElmTop});
CONTENTS
Web Browser