A library for creating a centered popup window
Install
npm i center_popup
const Popup = require('center_popup');
Usage
define the html element to use
<div id="popup">Hello World</div>
Create Instance
var popup = new Popup(document.getElementById('popup'));
popup.open();
popup.fadeIn(.3);
popup.close();
popup.fadeOut(.3);
You can also use string HTML as input
var popup = new Popup('<p>Hello World</p>');
popup.open();
Add event to string input, and dont have to addEvent every time you open
the popup window.
var popup = new Popup('<p>Hello World</p>', {
success() {
console.log(this);
this.node.addEventListener('click', function() {
alert('Trigger!');
});
}
})
Options
default: {}
-
display
Type: String
Default: block
CSS display property for target to show.
-
success
Type: Function
function which execute after node has been created, you can use this to
add events to you string input element
Methods
-
open(fn)
Type: String
Display a centered popup window.
fn => A function, which execute before append popup window into body,
you can use this function to do anything you like to the popup window.
it receives one argument, that argument is the popup window you are going to append.
const popup = new Popup('<p>Hello World</p>');
popup.open(template => {
console.log(template);
})
-
close()
Close the centered popup window.
-
fadeIn(seconds)
Type: Number
Default: 0.3
FadeIn the centered popup window in specific time.
-
fadeInDown(seconds)
Type: Number
Default: 0.3
FadeInDown the centered popup window in specific time.
-
fadeOut(seconds)
Type: Number
Default: 0.3
FadeOut the centered popup window in specific time.
License
Under the MIT license.