x
Окно 1
Текст модального окна 1
x
Окно 2
Текст модального окна 2
x
Окно 3
Текст модального окна 3
x
Окно 4
Текст модального окна 4
document.addEventListener('click', function (e) {
var scrollbar = document.body.clientWidth - window.innerWidth + 'px';
let $target = e.target;
if ($target.closest('[data-toggle="modal"]')) {
e.preventDefault();
$target = $target.closest('[data-toggle="modal"]');
document.querySelector($target.dataset.target).classList.add('open');
//выключить скролл под модальным окном
document.body.style.overflow = 'hidden';
} else if ($target.dataset.close === 'modal') {
e.preventDefault();
$target.closest('.modal').classList.remove('open');
//включить скролл после закрытия модального окна
document.body.style.overflow = 'visible';
}
});