@@ -10,31 +10,78 @@ Simple modals with useful options.
10
10
11
11
## Features
12
12
13
- - Create a modal from in-page HTML
14
- - Create a modal manually on-the-fly
15
- - Click the backdrop to close
13
+ ### Two ways to use
14
+
15
+ - Create a modal and open it immediately.
16
+ - Trigger preconfigured modals hidden in the document.
17
+
18
+ ### UI and transitions
19
+
20
+ - The modal is positioned to best fit the viewport.
21
+ - The modal and backdrop are animated when opening and closing.
22
+ - Replace an open model with a pleasing transition.
23
+
24
+ ### Behaviors
25
+
26
+ - Click the backdrop to close (can be disabled).
27
+ - Press <kbd >ESC</kbd > to close (can be disabled).
28
+ - Custom events are dispatched when opened and closed.
29
+ - On close, the modal HTML automatically removes itself.
30
+
31
+ ### Accessible
32
+
33
+ - Uses ` <section> ` to isolate heading hierarchy.
34
+ - Uses ` role="dialog" ` attribute.
35
+ - Uses ` aria-label ` attribute for close buttons.
36
+ - Focus is saved and restored when the modal closes.
37
+
38
+ ### Customization
39
+
40
+ - Pass a ` config ` object to override any default.
41
+ - Override SCSS vars for styling.
16
42
17
43
## Dependencies
18
44
19
- - jQuery 1.10.2
45
+ - None
20
46
21
47
## Usage
22
48
23
- Include the script in your page:
49
+ Include the script in your page (and polyfills for IE11) :
24
50
25
51
``` html
26
- <script src =" path/to/jquery-1.10.2.js" ></script >
27
- <script src =" path/to/modal.js" ></script >
52
+ <script defer src =" path/to/polyfill-custom-event.js" ></script >
53
+ <script defer src =" path/to/polyfill-object-assign.js" ></script >
54
+ <script defer src =" path/to/modal.js" ></script >
28
55
```
29
56
30
- Add modal markup to your HTML:
57
+ ### Create and open a modal immediately
58
+
59
+ ``` javascript
60
+ var content = [
61
+ ' <div class="modal_header">' ,
62
+ ' <h1>Modal Title</h1>' ,
63
+ ' </div>' ,
64
+ ' <div class="modal_body">' ,
65
+ ' <p>Nulla facilisi. Duis aliquet egestas purus in blandit.</p>' ,
66
+ ' </div>'
67
+ ];
68
+
69
+ var modal = new Modal ({
70
+ content: content .join (' ' ),
71
+ width: ' s'
72
+ });
73
+ ```
74
+
75
+ ### Set up modals to open via an event listener
76
+
77
+ Add modal triggers and content to your HTML:
31
78
32
79
``` html
33
- <button type =" button" data-modal =" example-modal" >
80
+ <button type =" button" data-modal-trigger =" example-modal" >
34
81
Show Modal
35
82
</button >
36
83
37
- <section class = " modal " id =" example-modal" >
84
+ <script type = " text/template " data-modal =" example-modal" >
38
85
<div class =" modal_header" >
39
86
<h1 >Modal Title</h1 >
40
87
</div >
@@ -56,71 +103,54 @@ Add modal markup to your HTML:
56
103
Close
57
104
</button >
58
105
</div >
59
- </section >
106
+ </script >
60
107
```
61
108
62
- Initialize all modals within the page :
109
+ Add event listeners to trigger each modal :
63
110
64
111
``` javascript
65
- if (jQuery ().modal ) {
66
- var $modalButtons = jQuery (' [data-modal]' );
112
+ var modalTriggers = document .querySelectorAll (' [data-modal-trigger]' );
67
113
68
- if ($modalButtons .length ) {
69
- $modalButtons .modal ();
70
- }
71
- }
72
- ```
114
+ for (var i = 0 ; i < modalTriggers .length ; i++ ) {
115
+ modalTriggers[i].addEventListener (' click' , function (e ) {
116
+ e .preventDefault ();
73
117
74
- Or create a modal manually:
118
+ var config = {};
119
+ var modal = this .getAttribute (' data-modal-trigger' );
120
+ var width = this .getAttribute (' data-modal-width' );
75
121
76
- ``` javascript
77
- var modalContent = [
78
- ' <div class="modal_header">' ,
79
- ' <h1>Modal Title</h1>' ,
80
- ' </div>' ,
81
- ' <div class="modal_body">' ,
82
- ' <p>Nulla facilisi. Duis aliquet egestas purus in blandit.</p>' ,
83
- ' </div>'
84
- ];
122
+ config .content = document .querySelector (' [data-modal="' + modal + ' "]' ).innerHTML ;
85
123
86
- jQuery .fn .modal ({
87
- contentInline: modalContent .join (' ' ),
88
- maxWidth: ' medium' ,
89
- showImmediately: true ,
90
- type: ' inline'
91
- });
124
+ if (width) {
125
+ config .width = width;
126
+ }
127
+
128
+ new Modal (config);
129
+ });
130
+ }
92
131
```
93
132
94
133
## Documentation
95
134
96
- ### Options
135
+ ### Configuration options
97
136
98
137
``` javascript
99
- var options = {
100
- addCloseLink: true , // {boolean} - Add a close link to the modal.
101
- classPrefix: ' ' , // {string} - "namespace-" - Prefix all classes with a namespace. You'll need to modify the CSS if you use this.
102
- closeLinkLabel: ' ×' , // {string} - "×|Close" - Label for the "close" link.
103
- contentInline: ' ' , // {string} - Content to use instead of a selector.
104
- contentAjax: ' ' , // {string} - Content returned by an AJAX request.
105
- loadingPlaceholder: ' <div class="modal_body">Loading...</div>' , // {string}
106
- maxWidth: ' ' , // {string} - '' or "small|medium|large" - Max width of the modal.
107
- showImmediately: false , // {boolean} - Show the modal immediately.
108
- transitionEndTime: 500 , // {number} - Milliseconds for the modal transition to complete (duration + delay) as set in CSS.
109
- /**
110
- * 'ajax' - The modal markup is returned by an AJAX response.
111
- * 'event' - The modal markup is returned by the "contentUpdate.modal" event.
112
- * 'id' - The modal markup is already in the DOM with a unique ID.
113
- * 'inline' - The modal markup is passed in as a string.
114
- */
115
- type: ' id' // {string} - Source for the modal's content.
138
+ var config = {
139
+ addCloseButton: true , // {boolean} - Add a close link to the modal.
140
+ allowBackdropClose: true , // {boolean} - Clicking the backdrop will close the modal.
141
+ allowEscapeClose: true , // {boolean} - Pressing "ESC" will close the modal.
142
+ class: ' ' , // {string} - Class on "modal" element.
143
+ closeButtonLabel: ' Close' , // {string} - Label for the "close" link.
144
+ content: null , // {string} - String of HTML content to render in the modal.
145
+ id: ' modal-' + Date .now (), // {string} - ID on "modal" element.
146
+ transitionEndTime: 500 , // {number} - Milliseconds for the modal transition to complete (duration + delay) as set in CSS.
147
+ width: ' base' // {string} - "base|fluid|s|l" - Max width of the modal.
116
148
}
117
149
```
118
150
119
- ### Events
151
+ ### Custom events
152
+
153
+ These events fire on the element assigned to ` this.$modal ` and bubble up:
120
154
121
- - open.modal
122
- - opened.modal
123
- - close.modal
124
- - closed.modal
125
- - backdropClose.modal
126
- - contentUpdate.modal
155
+ - ` modal-opened `
156
+ - ` modal-closed `
0 commit comments