Popbox.js is a tiny javascript plugin for creating stackable modals. It is fully customizable and dependency free.
- Add the popbox.css file to the head of your html.
- Add the popbox.js file to the head of your html or right before the closing body tag.
- Add this code after the popbox.js script tag to initialize the plugin.
<script type="text/javascript">
var popbox = new Popbox({
blur:true,
overlay:true,
});
</script>
<div data-popbox-id="mypopbox1" class="popbox">
<div class="popbox_container">
Popbox content 1
<button data-popbox-close="mypopbox1">Close</button>
</div>
</div>
<div data-popbox-id="mypopbox2" class="popbox">
<div class="popbox_container">
Popbox content 2
</div>
<button data-popbox-close="mypopbox2">Close</button>
</div>
<div class="popbox_main_content">
Main content of the page
<button data-popbox-target="mypopbox1">
Open mypopbox 1
</button>
<button data-popbox-target="mypopbox2">
Open mypopbox 2
</button>
  </div>
blur : set it to true for blur effect on the main content (Default:false)
Open and close popbox with api
<script type="text/javascript">
var popbox = new Popbox({
blur:true,
overlay:true,
});
//open a popbox
popbox.open('mypopbox1');
//close a popboxs
popbox.close('mypopbox1');
//close all popboxs
popbox.clear();
</script>
- 'popbox_opening': when a popbox is opening, that popbox element will emit this event..
- 'popbox_opened': when a popbox is opened, that popbox element will emit this event..
- 'popbox_closing': when a popbox is closing, that popbox element will emit this event..
- 'popbox_closed': when a popbox is closed, that popbox element will emit this event..
MIT License
Copyright (c) 2018 Biraj Ghosh <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.