-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.arrow.js
47 lines (39 loc) · 1.28 KB
/
jquery.arrow.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
(function($){
$.fn.addArrow = function(options) {
var
defaults = {
direction: 'right',
color: 'black',
isBefore: true,
isThick: true
}, settings = $.extend({}, defaults, options);
var thisArrow = "";
if (settings.isThick == true) {
thisArrow = "►";
if (settings.direction == 'left') {thisArrow = "◄";}
if (settings.direction == 'right') {thisArrow = "►";}
if (settings.direction == 'up') {thisArrow = "▲";}
if (settings.direction == 'down') {thisArrow = "▼";}
} else {
thisArrow = "→";
if (settings.direction == 'left') {thisArrow = "←";}
if (settings.direction == 'right') {thisArrow = "→";}
if (settings.direction == 'up') {thisArrow = "↑";}
if (settings.direction == 'down') {thisArrow = "↓";}
}
return this.each(function() {
if (settings.isBefore == true) {
$(this).prepend('<span class="arrow" style="color:'+settings.color+'">' + thisArrow + '</span>');
} else {
$(this).append('<span class="arrow" style="color:'+settings.color+'">' + thisArrow + '</span>');
}
});
};
})(jQuery);
(function($){
$.fn.removeArrow = function() {
return this.each(function() {
$(this).children().css('class', 'arrow').remove();
});
};
})(jQuery);