项目作者: idurar

项目描述 :
Lightweight vanilla js modal component (just 2kb) , pure javascript Modal
高级语言: JavaScript
项目地址: git://github.com/idurar/vanilla-js-modal.git
创建时间: 2020-09-22T13:27:59Z
项目社区:https://github.com/idurar/vanilla-js-modal

开源协议:MIT License

下载


Lightweight vanilla js modal component (just 2kb)

pure javascript Modal , This is just 2kb Lightweight vanilla js modal component with zero dependencies , with option esc close , outside click close , custom height , widht

check demo here : https://idurar.github.io/vanilla-js-modal/

  1. ### javascript code to open Modal
  2. modal.open('idContent'); // to open Modal with wanted html content
  3. // modal.close(); // to close Modal
  4. ### HTML code to insert in Modal
  5. <div id="idContent" style="display:none">
  6. <!--your Modal html content here -->
  7. </div>