• Stars
    star
    622
  • Rank 72,195 (Top 2 %)
  • Language
    TypeScript
  • Created over 11 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Modal window effects with transitions CSS3.

Custombox npm version Travis Coverage Status npm License

Modal dialog effects with transitions CSS3.

Usage

You can install custombox through bower:

bower install custombox

Or through npm:

npm install custombox

Alternatively, download the package and reference the JavaScript and CSS files manually:

<script src="custombox.min.js"></script>
<link rel="stylesheet" type="text/css" href="custombox.min.css">

Optional legacy file for along for the older browsers.

<script src="custombox.legacy.min.js"></script>

Basic usage

new Custombox.modal({
  content: {
    effect: 'fadein',
    target: '#modal'
  }
}).open();