<div class="wrap-center-middle">
    <h4>Модальное окно <br>на чистом JavaScript</h4><br>
    <button type="button" class="btn btn-lg btn-primary js-modal" data-modal="#modal_1">Открыть</button>
    <br>
    <button type="button" class="btn btn-lg btn-primary js-modal" data-modal="#modal_2">Открыть другое окно</button>
  </div>
  
  <!-- /.wrap-center-middle -->

  <div id="modal_1" class="modal-window">
    <div class="modal-window__title">
      <h3>Привет!</h3>
      <a href="#" class="modal-close">Закрыть</a>
    </div>
  </div>
  <!-- /#modal_1 -->

  <div id="modal_2" class="modal-window">
    <div class="modal-window__title">
      <h3>Как дела?</h3>
      <a href="#" class="modal-close">Закрыть</a>
    </div>
  </div>
  <!-- /#modal_2 -->
  <div class="modal-window__backdrop hidden" id="modal-backdrop"></div>
.wrap-center-middle
  display: flex
  align-items: center
  justify-content: center
  flex-flow: wrap column
  text-align: center
  height: 100vh

.modal-window
  position: fixed
  z-index: 100
  top: 50%
  left: 50%
  transform: translate(-50%, -80%) scale(.9)
  width: 520px
  max-width: 95%
  min-height: 200px
  box-shadow: 0 10px 30px rgba(#000, .2)
  background-color: #fff
  border-radius: 4px
  transition: all .18s ease-in-out
  visibility: hidden
  opacity: 0
  
  &.show
    transform: translate(-50%, -50%) scale(1)
    opacity: 1
    visibility: visible
  
  &__title
    display: flex
    justify-content: center
    align-items: center
    flex-flow: column wrap
    height: 100%
    min-height: inherit
  
  &__backdrop
    position: fixed
    top: 0
    left: 0
    width: 100%
    height: 100%
    background-color: rgba(#000, .6)

.hidden
  display: none
View Compiled
(function() {
  "use strict";

  const backdrop = document.querySelector('#modal-backdrop');
  document.addEventListener('click', modalHandler);

  function modalHandler(evt) {
    const modalBtnOpen = evt.target.closest('.js-modal');
    if (modalBtnOpen) { // open btn click
      const modalSelector = modalBtnOpen.dataset.modal;
      showModal(document.querySelector(modalSelector));
    }

    const modalBtnClose = evt.target.closest('.modal-close');
    if (modalBtnClose) { // close btn click
      evt.preventDefault();
      hideModal(modalBtnClose.closest('.modal-window'));
    }

    if (evt.target.matches('#modal-backdrop')) { // backdrop click
      hideModal(document.querySelector('.modal-window.show'));
    }
  }

  function showModal(modalElem) {
    modalElem.classList.add('show');
    backdrop.classList.remove('hidden');
  }

  function hideModal(modalElem) {
    modalElem.classList.remove('show');
    backdrop.classList.add('hidden');
  }
})();

External CSS

  1. https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css

External JavaScript

This Pen doesn't use any external JavaScript resources.