<script src="modalblanc.js"></script>
<link rel="stylesheet" href="modalblanc.css">
npm install modalblanc --save
const modal = new Modalblanc({ content: "<h1>Simple modal with data!</h1>" });
var modal = new Modalblanc({ content: "<h1>Content data man!</h1>", sideTwo: { content: "<h2>Hello universe!</h2>" } });
const photos = [ 'img/example-images-1.jpg', 'img/example-images-2.jpg', 'img/example-images-3.jpg', 'img/example-images-4.jpg' ]; const modalSlider = new Modalblanc({ content: '<h1>Content data man!</h1>', slider: photos, autoPlaySlider: true });
Option | Default | Type | Description |
---|---|---|---|
content
|
null
|
string
|
Content in the modal |
animation
|
fade-in-out
|
string
|
Type of modal animation (fade-in-out, slide-in-right) |
closeButton
|
true
|
boolean
|
Show or hide the close button |
sideTwo: content
|
null
|
string
|
Displays your content on the backside of the modal |
sideTwo: animation
|
slide
|
string
|
Type of modal content animation (slide, scale) |
sideTwo: button
|
null
|
object
|
Custom elements (a, button, li e.g.) id always have to be modal-button-next and parent always front-card. Fix this on short term. |
sideTwo: button back
|
null
|
object
|
Custom elements (a, button, li e.g.) id always have to be modal-button-prev and parent always back-card. Fix this on short term. |
slider
|
optional
|
array
|
Enable photo slider |
autoPlaySlider
|
false
|
boolean
|
Auto play photo slider when is active |