Example of using Keukenhof.js for an animated modal window
import {Keukenhof} from 'keukenhof';
Keukenhof.init({
hasAnimation: true,
});
Example of using Keukenhof.js for an animated modal window
import {Keukenhof} from 'keukenhof';
Keukenhof.init({
hasAnimation: true,
});
Part of the preparation of the library work is hidden, you just need to create a layout. There are no restrictions on the layout of your modal window, you just need to add data-keukenhof-open
to the value of which you need to specify the selector of the window that should open on click and data-keukenhof-close
for the element that should close the currently active modal
aria-*
attributes are important for the accessibility of your content and are added by you when creating the layout (only you can correctly describe the purpose of your modal), Keukenhof.js is responsible for switching aria-hidden
<!DOCTYPE html>
<title>Keukenhof.js modal example</title>
<style>
#modal {
display: none;
}
#modal.isOpen {
display: block;
}
</style>
<button data-keukenhof-open="#modal">Open modal</button>
<!-- Main modal wrapper with required id -->
<div
id="modal"
role="dialog"
aria-hidden="true"
aria-labelledby="title"
aria-describedby="desc">
<!-- Element for handling a click outside the modal window -->
<div
class="overlay"
tabindex="-1"
data-keukenhof-close></div>
<header>
<!-- Button to close the modal window -->
<button
class="close"
aria-label="Close modal"
data-keukenhof-close>Close</button>
</header>
<!-- Body used to improve a11y by describing the purpose of the modal -->
<main>
<h2 id="title">Keukenhof.js modal</h2>
<p id="desc">Lightweight and easy to use the library for modals</p>
</main>
</div>
<script src="https://unpkg.com/keukenhof"></script>
<script>
Keukenhof.init();
</script>
An alternative connection option is to use import Keukenhof
import {Keukenhof} from 'keukenhof';
// Initializing modal windows based on markup
Keukenhof.init({
// options
});
// Configure and open modal by selector
Keukenhof.open('#modal', {
// options
});
// Close active modal window
Keukenhof.close();
The attribute containing the selector of the modal window that should be opened by clicking on the element
By default: data-keukenhof-open
Keukenhof.init({
openAttribute: 'data-modal-open',
});
The attribute marking elements inside the modal window, clicking on which will close this modal window
By default: data-keukenhof-close
Keukenhof.init({
closeAttribute: 'data-modal-close',
});
The class name added for the open modal window
By default: isOpen
Keukenhof.init({
openClass: 'is-open',
});
The class name added for the modal window that is in the process of opening (required for modals using CSS animations)
By default: isOpening
Keukenhof.init({
openingClass: 'is-opening',
});
The class name added for the modal window that is in the process of closing (required for modals using CSS animations)
By default: isClosing
Keukenhof.init({
closingClass: 'is-closing',
});
Indicates the need to wait for the completion of the CSS animation of opening/closing the modal window
By default: false
Keukenhof.init({
hasAnimation: true,
});
Indicates the need to focus on an interactive element inside the modal after opening
By default: true
Keukenhof.init({
isAssignFocus: false,
});
Indicates the need to restrict focusable interactive elements using the keyboard inside the active modal
By default: true
Keukenhof.init({
isFocusInside: false,
});
Specify the need to block the scroll after opening a modal window. The scroll is blocked with overflow: hidden;
if after closing the modal the overflow value should be defined just specify this as defaultValue
By default: { isDisabled: true, container: 'body', defaultValue: '' }
Keukenhof.init({
scrollBehavior: {
isDisabled: true,
container: '.wrapper',
defaultValue: '',
},
});
Defines a function that will be called when the modal is open (if hasAnimation: true
is called after the animation has finished)
By default: () => {}
Keukenhof.init({
onOpen: (event) => console.log('The modal window was opened', event),
});
Defines a function that will be called when the modal is close (if hasAnimation: true
is called after the animation has finished)
By default: () => {}
Keukenhof.init({
onClose: (event) => console.log('The modal window was closed', event),
});
Defines a function to be called before the modal opens. If the function returns false
the modal won't open
By default: () => true
Keukenhof.init({
beforeOpen: (event) => {
if (counter > 10) return true;
},
});
Defines a function to be called before the modal closes. If the function returns false
the modal won't close
By default: () => true
Keukenhof.init({
beforeClose: (event) => {
if (counter > 10) return true;
},
});
Initializes all modals based on markup. Accepts one optional parameter for configuration
Keukenhof.init({
selector: "#modal-1",
openAttribute: "data-modal-open",
closeAttribute: "data-modal-close",
openClass: "is-open",
openingClass: "is-opening",
closingClass: "is-closing",
hasAnimation: true,
isAssignFocus: false,
isFocusInside: false,
scrollBehavior: {
isDisabled: true,
},
onOpen: () => console.log("The modal window is open"),
onClose: () => console.log("The modal window is close"),
});
Opens a modal window with the given selector. The open
method has a second optional parameter for configuration
// With config
Keukenhof.open("#modal", {
openAttribute: "data-modal-open",
closeAttribute: "data-modal-close",
openClass: "is-open",
openingClass: "is-opening",
closingClass: "is-closing",
hasAnimation: true,
});
// Without config
Keukenhof.open("#modal");
Closes the modal with the given selector. If no parameters are passed to the close
method, the currently open window will be closed
// With selector
Keukenhof.close('#modal');
// Without selector
Keukenhof.close();
type ConfigType = {
selector?: string;
triggers?: HTMLElement[];
openAttribute?: string;
closeAttribute?: string;
openClass?: string;
openingClass?: string;
closingClass?: string;
hasAnimation?: boolean;
isAssignFocus?: boolean;
isFocusInside?: boolean;
scrollBehavior?: {
isDisabled?: boolean;
container?: string;
defaultValue?: string;
};
onOpen?: (event?: Event) => void;
onClose?: (event?: Event) => void;
beforeOpen?: (event?: Event) => boolean;
beforeClose?: (event?: Event) => boolean;
};
type KeukenhofType = {
init: (config?: ConfigType) => void;
open: (selector: string, config?: ConfigType) => void;
close: (selector?: string) => void;
};
onOpen
, onClose
, beforeOpen
, beforeClose
Found a problem or want to contribute?
Please visit the project page on GitHub