Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 378 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 378 Bytes

Modal.js

About

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();