forked from ConciseCSS/concise.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconcise.js
More file actions
476 lines (414 loc) · 11.2 KB
/
concise.js
File metadata and controls
476 lines (414 loc) · 11.2 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
/**
* # Concise.JS
* http://github.com/ConciseCSS/concise.css
*
*
* Copyright 2014 Contributors
* Released under the MIT license
* http://opensource.org/licenses/MIT
*
*/
(function($){
/**
* Powers the universal dropdown selector.
*
* @class DropDown
* @param {Object} el jQuery object
*/
function DropDown(el) {
this.dd = el;
this.initEvents();
}
DropDown.prototype = {
initEvents : function() {
// Toggle .dropdown-active on click
this.dd.on('click', function(event){
$(this).toggleClass('dropdown-active');
event.stopPropagation();
});
}
}
/**
* Determine if responsive navigation text needs to be added.
*
* @method responsiveNav
* @return {Object} naver A naver plugin instantiation
*/
$.fn.responsiveNav = function() {
// Loop through each instance of responsive navigation
this.each(function(index) {
var labelState = $(this).hasClass( "nav-responsive-text" );
return $(this).naver({
maxWidth: "768px",
label: labelState
});
});
};
/**
* Calculate object width
*
*/
$.fn.calculateWidth = function() {
return $(this).width();
};
/**
* Calculates proper widths for non-responsive websites.
*
* @method nonResponsive
* @note Only necessary for non-responsive websites.
*/
$.fn.nonResponsive = function() {
// Loop through each instance of the `.non-responsive` class
this.each(function(index) {
if ($(this).hasClass("non-responsive")) {
// Get container width
var containerWidth = $(".container").width(),
i = 1,
max = 24;
// Set pixel-based alternatives for grid styles
// But first we need to know if our row has class `gutters`
if($(this).hasClass("gutters")) {
for (; i <= max; i++ ) {
// Column width for row with gutters
var columnWidth = ($('.column-'+i).calculateWidth()),
gutterWidth = columnWidth * 0.02;
$('.gutters .column-'+i).css("width", columnWidth - gutterWidth + "px");
}
} else {
for (; i <= max ; i++ ) {
// Column width for normal row
var columnWidth = ($('.column-'+i).calculateWidth() - 1);
$('.column-'+i).css("width", columnWidth + "px");
}
}
}
});
};
$(function(){
var dropdown = $('.dropdown');
new DropDown(dropdown);
$(document).click(function() {
// Remove class from all dropdowns
dropdown.removeClass('dropdown-active');
});
});
}(jQuery));
jQuery(document).ready(function() {
jQuery(".nav-responsive, .nav-responsive-left, .nav-responsive-center").responsiveNav();
jQuery("body, .row").nonResponsive();
$(document).on('click', '.close', function () {
// Get .close parent div, fade out
$(this).parents('.close-this').fadeOut('slow');
});
});
/*
* Naver v3.0.8 - 2014-05-06
* A jQuery plugin for responsive navigation. Part of the Formstone Library.
* http://formstone.it/naver/
*
* Copyright 2014 Ben Plum; MIT Licensed
*/
;(function ($, window) {
"use strict";
/**
* @options
* @param customClass [string] <''> "Class applied to instance"
* @param label [boolean] <true> "Display handle width label"
* @param labels.closed [string] <'Navigation'> "Closed state text"
* @param labels.open [string] <'Close'> "Open state text"
* @param maxWidth [string] <'980px'> "Width at which to auto-disable plugin"
*/
var options = {
customClass: "",
label: true,
labels: {
closed: "Navigation",
open: "Close"
},
maxWidth: "980px"
};
/**
* @events
* @event open.naver "Navigation opened"
* @event close.naver "Navigation closed"
*/
var pub = {
/**
* @method
* @name close
* @description Closes instance
* @example $(".target").naver("close");
*/
close: function(e) {
return $(this).each(function(i, nav) {
var data = $(nav).data("naver");
if (data && data.$nav.hasClass("enabled")) {
data.$wrapper.css({
height: 0
});
if (data.label) {
data.$handle.html(data.labels.closed);
}
data.$nav.removeClass("open")
.trigger("close.naver");
}
});
},
/**
* @method
* @name defaults
* @description Sets default plugin options
* @param opts [object] <{}> "Options object"
* @example $.naver("defaults", opts);
*/
defaults: function(opts) {
options = $.extend(true, options, opts || {});
return $(this);
},
/**
* @method
* @name disable
* @description Disables instance
* @example $(".target").naver("disable");
*/
disable: function() {
return $(this).each(function(i, nav) {
var data = $(nav).data("naver");
if (data) {
data.$nav.removeClass("enabled");
data.$wrapper.css({ height: "" });
}
});
},
/**
* @method
* @name destroy
* @description Destroys instance
* @example $(".target").naver("destroy");
*/
destroy: function() {
return $(this).each(function(i, nav) {
var data = $(nav).data("naver");
if (data) {
data.$handle.remove();
data.$container.contents()
.unwrap()
.unwrap();
data.$nav.removeClass("enabled disabled naver " + data.customClass)
.off(".naver")
.removeData("naver");
}
});
},
/**
* @method
* @name enable
* @description Enables instance
* @example $(".target").naver("enable");
*/
enable: function() {
return $(this).each(function(i, nav) {
var data = $(nav).data("naver");
if (data) {
data.$nav.addClass("enabled");
pub.close.apply(data.$nav);
}
});
},
/**
* @method
* @name open
* @description Opens instance
* @example $(".target").naver("open");
*/
open: function() {
return $(this).each(function(i, nav) {
var data = $(nav).data("naver");
if (data && data.$nav.hasClass("enabled")) {
data.$wrapper.css({
height: data.$container.outerHeight(true)
});
if (data.label) {
data.$handle.html(data.labels.open);
}
data.$nav.addClass("open")
.trigger("open.naver");
}
});
}
};
/**
* @method private
* @name _init
* @description Initializes plugin
* @param opts [object] "Initialization options"
*/
function _init(opts) {
// Settings
opts = $.extend(true, {}, options, opts);
// Apply to each element
var $items = $(this);
for (var i = 0, count = $items.length; i < count; i++) {
_build($items.eq(i), opts);
}
return $items;
}
/**
* @method private
* @name _build
* @description Builds each instance
* @param $nav [jQuery object] "Target jQuery object"
* @param opts [object] <{}> "Options object"
*/
function _build($nav, opts) {
if (!$nav.data("naver")) {
// Extend Options
opts = $.extend(true, {}, opts, $nav.data("naver-options"));
var $handle = $nav.find(".naver-handle").length ? $nav.find(".naver-handle").detach() : $('<span class="naver-handle"></span>');
$nav.addClass("naver " + opts.customClass)
.wrapInner('<div class="naver-container"></div>')
.wrapInner('<div class="naver-wrapper"></div>')
.prepend($handle);
var data = $.extend(true, {
$nav: $nav,
$container: $nav.find(".naver-container"),
$wrapper: $nav.find(".naver-wrapper"),
$handle: $nav.find(".naver-handle")
}, opts);
data.$handle.text((opts.label) ? opts.labels.closed : '');
data.$nav.on("touchstart.naver", ".naver-handle", data, _onTouchStart)
.on("click.naver", ".naver-handle", data, _onClick)
.data("naver", data);
// Navtive MQ Support
if (window.matchMedia !== undefined) {
data.mediaQuery = window.matchMedia("(max-width:" + (data.maxWidth === Infinity ? "100000px" : data.maxWidth) + ")");
// Make sure we stay in context
data.mediaQuery.addListener(function() {
_onRespond.apply(data.$nav);
});
_onRespond.apply(data.$nav);
}
}
}
/**
* @method private
* @name _onTouchStart
* @description Handles touchstart to selected item
* @param e [object] "Event data"
*/
function _onTouchStart(e) {
e.stopPropagation();
var data = e.data,
oe = e.originalEvent;
_clearTimer(data.timer);
data.touchStartX = oe.touches[0].clientX;
data.touchStartY = oe.touches[0].clientY;
data.$nav.on("touchmove.naver", ".naver-handle", data, _onTouchMove)
.on("touchend.naver", ".naver-handle", data, _onTouchEnd);
}
/**
* @method private
* @name _onTouchMove
* @description Handles touchmove to selected item
* @param e [object] "Event data"
*/
function _onTouchMove(e) {
var data = e.data,
oe = e.originalEvent;
if (Math.abs(oe.touches[0].clientX - data.touchStartX) > 10 || Math.abs(oe.touches[0].clientY - data.touchStartY) > 10) {
data.$nav.off("touchmove.naver touchend.naver");
}
}
/**
* @method private
* @name _onTouchEnd
* @description Handles touchend to selected item
* @param e [object] "Event data"
*/
function _onTouchEnd(e) {
e.preventDefault();
e.stopPropagation();
var data = e.data;
data.$nav.off("touchmove.naver touchend.naver click.naver");
// prevent ghosty clicks
data.timer = _startTimer(data.timer, 1000, function() {
data.$nav.on("click.naver", ".naver-handle", data, _onClick);
});
_onClick(e);
}
/**
* @method private
* @name _onClick
* @description Handles click nav click
* @param e [object] "Event data"
*/
function _onClick(e) {
e.preventDefault();
e.stopPropagation();
var $target = $(e.currentTarget),
data = e.data;
// Close other open instances
$(".naver").not(data.$nav)
.naver("close");
if (data.$nav.hasClass("open")) {
pub.close.apply(data.$nav);
} else {
pub.open.apply(data.$nav);
}
}
/**
* @method private
* @name _onRespond
* @description Handles media query match change
*/
function _onRespond() {
var data = $(this).data("naver");
if (data.mediaQuery.matches) {
pub.enable.apply(data.$nav);
} else {
pub.disable.apply(data.$nav);
}
}
/**
* @method private
* @name _startTimer
* @description Starts an internal timer
* @param timer [int] "Timer ID"
* @param time [int] "Time until execution"
* @param callback [int] "Function to execute"
* @param interval [boolean] "Flag for recurring interval"
*/
function _startTimer(timer, time, func, interval) {
_clearTimer(timer, interval);
if (interval === true) {
return setInterval(func, time);
} else {
return setTimeout(func, time);
}
}
/**
* @method private
* @name _clearTimer
* @description Clears an internal timer
* @param timer [int] "Timer ID"
*/
function _clearTimer(timer) {
if (timer !== null) {
clearInterval(timer);
timer = null;
}
}
$.fn.naver = function(method) {
if (pub[method]) {
return pub[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return _init.apply(this, arguments);
}
return this;
};
$.naver = function(method) {
if (method === "defaults") {
pub.defaults.apply(this, Array.prototype.slice.call(arguments, 1));
}
};
})(jQuery, window);