-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjquery.highlight.js
223 lines (190 loc) · 5.44 KB
/
jquery.highlight.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
(function($) {
var _default = {
id: 'highlight-overlay',
className: 'highlight-overlay',
color: '#262626',
opacity: 0.5,
zIndex: 1000,
fadeInDuration: 400,
fadeOutDuration: 400,
onStartCallback: null,
onDismissCallback: null,
svgPathStyle: 'rect',
svgPathFunction: null
};
var settings = _default;
var overlayEl = null;
var svgEl = null;
var pathEl = null;
var isDisplayed = false;
var svgRectPath = function(top, left, bottom, right) {
return ' M' + left + ',' + top +
' L' + left + ',' + bottom +
' L' + right + ',' + bottom +
' L' + right + ',' + top +
' L' + left + ',' + top;
};
var svgCirclePath = function(top, left, bottom, right) {
// http://stackoverflow.com/questions/5737975/circle-drawing-with-svgs-arc-path
var r = Math.max(right - left, bottom - top) / 2;
var cx = left + (right - left)/2;
var cy = top + (bottom - top) / 2;
return ' M ' + cx + ' ' + cy +
' m -' + r + ', 0 ' +
' a ' + r + ',' + r + ' 0 1,0 ' + (r * 2) + ',0' +
' a ' + r + ',' + r + ' 0 1,0 -' + (r * 2) + ',0';
}
var init = function(options) {
if (overlayEl) {
return;
}
if (options) {
settings = $.extend(_default, options);
}
// Append overlay to document
var template = '<div id="' + settings['id'] + '" class="' + settings['className'] +
'"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path></path></svg></div>';
$('body').append(template);
// Implement css on overlay
overlayEl = $('.' + settings.className);
overlayEl.css({
'display': 'none',
'position': 'absolute',
'z-index': settings.zIndex,
'top': 0,
'left': 0,
'pointer-events': 'none'
});
svgEl = overlayEl.find('svg');
pathEl = svgEl.find('path');
pathEl.css({
'fill': settings.color
});
};
var resize = function(els) {
if (!els || !els.length) {
return;
}
// Calculate viewport offset
var wTop = window.scrollY;
var wLeft = window.scrollX;
var wBottom = wTop + window.innerHeight;
var wRight = wLeft + window.innerWidth;
// Check if first element in viewport
// If not scrollIntoView
var firstEl = els[0];
var offset = $(firstEl).offset();
var top = offset.top;
var left = offset.left;
var bottom = top + $(firstEl).outerHeight();
var right = left + $(firstEl).outerWidth();
if(top < wTop || left < wLeft || bottom > wBottom || right > wRight) {
firstEl.scrollIntoView();
}
// Build viewport path
wTop = window.scrollY;
wLeft = window.scrollX;
wBottom = wTop + window.innerHeight;
wRight = wLeft + window.innerWidth;
svgEl.css({
'width': wRight + 'px',
'height': wBottom + 'px',
'opacity': settings.opacity
});
var path = 'M' + wLeft + ',' + wTop +
' L' + wRight + ',' + wTop +
' L' + wRight + ',' + wBottom +
' L' + wLeft + ',' + wBottom +
' L' + wLeft + ',' + wTop;
// Highlight each target
var pathFunc = svgRectPath; // Default function
if (settings.svgPathFunction) {
pathFunc = settings.svgPathFunction;
} else {
if (settings.svgPathStyle === 'circle') {
pathFunc = svgCirclePath;
}
}
els.each(function() {
offset = $(this).offset();
top = offset.top;
left = offset.left;
bottom = top + $(this).outerHeight();
right = left + $(this).outerWidth();
path += pathFunc(top, left, bottom, right);
});
pathEl.attr('d', path);
};
var fadeIn = function(els, opt_callback) {
if (!overlayEl || isDisplayed || !els) {
return;
}
overlayEl.fadeIn(settings['fadeInDuration'], function() {
isDisplayed = true;
// Handle click event outside target element
$(document).on('click.highlight touchstart.highlight', function(event) {
if(!$(event.target).closest(els).length && !$(event.target).is(els)) {
fadeOut();
}
});
// Handle overlay for window resize
$(window).on('resize.highlight', function() {
resize(els);
});
if (opt_callback) {
opt_callback();
}
if (settings['onStartCallback']) {
settings['onStartCallback']();
}
});
};
var fadeOut = function(opt_callback) {
if (!overlayEl || !isDisplayed) {
return;
}
overlayEl.fadeOut(settings['fadeOutDuration'], function() {
isDisplayed = false;
unbindEvents();
if (opt_callback) {
opt_callback();
}
if (settings['onDismissCallback']) {
settings['onDismissCallback']();
}
});
};
var unbindEvents = function() {
$(document).off('click.highlight touchstart.highlight');
$(window).off('resize.highlight');
};
$.fn.highlightOverlay = function(options) {
var this_ = this;
init(options);
if (isDisplayed) {
fadeOut(function() {
resize(this_);
fadeIn(this_);
});
return;
}
resize(this);
fadeIn(this);
};
$.dismissHighlightOverlay = function(opt_callback) {
fadeOut(opt_callback);
};
$.destroyHighlightOverlay = function() {
if (!settings || !settings['id']) {
return;
}
$('#' + settings['id']).remove();
// Restore states
overlayEl = null;
svgEl = null;
pathEl = null;
isDisplayed = false;
settings = _default;
unbindEvents();
};
}(jQuery));