-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathjquery.reveal.js
177 lines (152 loc) · 6.28 KB
/
jquery.reveal.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
* jQuery Reveal Plugin 1.0
* www.ZURB.com
* Copyright 2010, ZURB
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*/
(function ($) {
$('a[data-reveal-id]').live('click', function (event) {
event.preventDefault();
var modalLocation = $(this).attr('data-reveal-id');
$('#' + modalLocation).reveal($(this).data());
});
$.fn.reveal = function (options) {
var defaults = {
animation: 'fadeAndPop', // fade, fadeAndPop, none
animationSpeed: 300, // how fast animtions are
closeOnBackgroundClick: true, // if you click background will modal close?
dismissModalClass: 'close-reveal-modal', // the class of a button or element that will close an open modal
onOpening: function(){}, // Callback when modal is ready to open
onOpened: function(){}, // Callback when modal is fully opened
onClosing: function(){}, // Callback when modal is preparing to close
onClosed: function(){} // Callback when modal is closed
};
var options = $.extend({}, defaults, options);
return this.each(function () {
var modal = $(this),
topMeasure = parseInt(modal.css('top')),
topOffset = modal.height() + topMeasure,
locked = false,
modalBg = $('.reveal-modal-bg');
if (modalBg.length == 0) {
modalBg = $('<div class="reveal-modal-bg" />').insertAfter(modal);
modalBg.fadeTo('fast', 0.8);
}
function unlockModal() {
locked = false;
}
function lockModal() {
locked = true;
}
/* ---- Internal callback helpers ---- */
/**
* @func: modalOpening
* @desc: calls the lockModal method. Then executes the onOpening callback.
*/
function modalOpening() {
lockModal();
options.onOpening.call( [], modal ); // Execute the onOpening callback - modal is preparing to open
}
/**
* @func: modalOpened
* @desc: calls the unlockModal method. Then executes the onOpened callback.
*/
function modalOpened() {
unlockModal();
options.onOpened.call( [], modal ); // Execute the onOpened callback - modal is fully visible
}
/**
* @func: modalClosing
* @desc: calls the lockModal method. Then executes the onClosing callback.
*/
function modalClosing() {
lockModal();
options.onClosing.call( [], modal ); // Execute the onClosing callback - modal is preparing to close
}
/**
* @func: modalClosed
* @desc: calls the unlockModal method. Then executes the onClosed callback.
*/
function modalClosed() {
unlockModal();
options.onClosed.call( [], modal ); // Execute the onClosed callback - Modal is closed
}
function openAnimation() {
modalBg.unbind('click.modalEvent');
$('.' + options.dismissModalClass).unbind('click.modalEvent');
if (!locked) {
modalOpening(); // Modal is preparing to open
if (options.animation == "fadeAndPop") {
modal.css({'top': $(document).scrollTop() - topOffset, 'opacity': 0, 'visibility': 'visible'});
modalBg.fadeIn(options.animationSpeed / 2);
modal.delay(options.animationSpeed / 2).animate({
"top": $(document).scrollTop() + topMeasure + 'px',
"opacity": 1
}, options.animationSpeed, modalOpened /* Modal has opened */ );
}
if (options.animation == "fade") {
modal.css({'opacity': 0, 'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});
modalBg.fadeIn(options.animationSpeed / 2);
modal.delay(options.animationSpeed / 2).animate({
"opacity": 1
}, options.animationSpeed, modalOpened /* Modal has opened */ );
}
if (options.animation == "none") {
modal.css({'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});
modalBg.css({"display": "block"});
modalOpened(); /* Modal has opened */
}
}
modal.unbind('reveal:open', openAnimation);
}
modal.bind('reveal:open', openAnimation);
function closeAnimation() {
if (!locked) {
modalClosing(); // Modal is preparing to close
if (options.animation == "fadeAndPop") {
modalBg.delay(options.animationSpeed).fadeOut(options.animationSpeed);
modal.animate({
"top": $(document).scrollTop() - topOffset + 'px',
"opacity": 0
}, options.animationSpeed / 2, function () {
modal.css({'top': topMeasure, 'opacity': 1, 'visibility': 'hidden'});
modalClosed(); /* Modal has finished closing */
});
}
if (options.animation == "fade") {
modalBg.delay(options.animationSpeed).fadeOut(options.animationSpeed);
modal.animate({
"opacity" : 0
}, options.animationSpeed, function () {
modal.css({'opacity': 1, 'visibility': 'hidden', 'top': topMeasure});
modalClosed(); /* Modal has finished closing */
});
}
if (options.animation == "none") {
modal.css({'visibility': 'hidden', 'top': topMeasure});
modalBg.css({'display': 'none'});
modalClosed(); /* Modal has finished closing */
}
}
modal.unbind('reveal:close', closeAnimation);
}
modal.bind('reveal:close', closeAnimation);
modal.trigger('reveal:open');
var closeButton = $('.' + options.dismissModalClass).bind('click.modalEvent', function () {
modal.trigger('reveal:close');
});
if (options.closeOnBackgroundClick) {
modalBg.css({"cursor": "pointer"});
modalBg.bind('click.modalEvent', function () {
modal.trigger('reveal:close');
});
}
$('body').keyup(function (event) {
if (event.which === 27) { // 27 is the keycode for the Escape key
modal.trigger('reveal:close');
}
});
});
};
})(jQuery);