-
Notifications
You must be signed in to change notification settings - Fork 1
/
focusElement.js
70 lines (67 loc) · 2.46 KB
/
focusElement.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
/*
___________
\_ _____/ ____ ____ __ __ ______
| __) / _ \ _/ ___\ | | \ / ___/
| \ ( <_> )\ \___ | | / \___ \
\___ / \____/ \___ >|____/ /____ >
\/ \/ \/
Version: 1.0.0
Author: Alefe Mafra
GitHub: https://github.com/alefemafra/jQuery-Focus-Element
*/
(function(factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else if (typeof exports !== 'undefined') {
module.exports = factory(require('jquery'));
} else {
factory(jQuery);
}
}(function($) {
var methods = {
show: function(variavel) {
$(this).on('click', function() {
if (!$('.focus-effect').hasClass('active')) {
$('.object.active').removeClass('object active');
$('.focus-effect').addClass('active');
$(variavel).addClass('object active');
}
});
},
showManual: function(variavel) {
if (!$('.focus-effect').hasClass('active')) {
$('.object.active').removeClass('object active');
$('.focus-effect').addClass('active');
$(variavel).addClass('object active');
}
},
hide: function(variavel) {
$(this).on('click', function() {
if ($('.focus-effect').hasClass('active')) {
$('.focus-effect').removeClass('active');
$(variavel).removeClass('object active');
}
});
},
hideManual: function(variavel) {
if ($('.focus-effect').hasClass('active')) {
$('.focus-effect').removeClass('active');
$(variavel).removeClass('object active');
}
},
hideBackground: function() {
$('.focus-effect').removeClass('active');
}
};
$.fn.focus = function(methodOrOptions) {
if (methods[methodOrOptions]) {
return methods[methodOrOptions].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof methodOrOptions === 'object' || !methodOrOptions) {
// Default to "init"
return methods.hide.apply(this, arguments);
} else {
$.error('Method ' + methodOrOptions + ' does not exist on jQuery.tooltip');
}
};
}));