Modal Windowを作成するためのjavascriptライブラリです。 サンプルページ
// Create Isntance
const modal = new Modal(document.getElementById("ID-of-element"));
// If you want shadow
modal.shadow = true;
// Open Modal Window
modal.show();
// Close Modal Window
modal.hide();
Modal Windowを作成するためのjavascriptライブラリです。 サンプルページ
// Create Isntance
const modal = new Modal(document.getElementById("ID-of-element"));
// If you want shadow
modal.shadow = true;
// Open Modal Window
modal.show();
// Close Modal Window
modal.hide();