forked from tncbbthositg/jQuery-Watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.watermark.js
153 lines (131 loc) · 5.59 KB
/
jquery.watermark.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
/*
* jQuery Watermark plugin
* Version 1.3.1 (23-MAR-2012)
* @requires jQuery v1.3 or later
*
* Examples at: http://mario.ec/static/jq-watermark/
* Copyright (c) 2010 Mario Estrada
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
*/
(function ($) {
var old_ie = $.browser.msie && (!document.documentMode || $.browser.version < 8);
var hard_left = 4;
$.watermarker = function () { };
$.extend($.watermarker, {
defaults: {
color: '#999',
left: 0,
top: 0,
fallback: false,
animDuration: 300,
minOpacity: 0.6
},
setDefaults: function (settings) {
$.extend($.watermarker.defaults, settings);
},
checkVal: function (val, label, event_blur) {
if (val.length == 0)
$(label).show();
else
$(label).hide();
return val.length > 0;
},
html5_support: function () {
var i = document.createElement('input');
return 'placeholder' in i;
}
});
$.fn.watermark = function (text, options) {
var options, elems;
options = $.extend({}, $.watermarker.defaults, options);
elems = this.filter('textarea, input:not(:checkbox,:radio,:file,:submit,:reset)');
if (options.fallback && $.watermarker.html5_support())
return this;
elems.each(function () {
var $elem, attr_name, label_text, watermark_container, watermark_label;
var e_margin_left, e_margin_top, pos, e_top = 0, height, line_height;
$elem = $(this);
if ($elem.attr('data-jq-watermark') == 'processed')
return;
attr_name = $elem.attr('placeholder') != undefined && $elem.attr('placeholder') != '' ? 'placeholder' : 'title';
label_text = text === undefined || text === '' ? $(this).attr(attr_name) : text;
watermark_container = $('<span class="watermark_container"></span>');
watermark_label = $('<span class="watermark">' + label_text + '</span>');
// If used, remove the placeholder attribute to prevent conflicts
if (attr_name == 'placeholder')
$elem.removeAttr('placeholder');
watermark_container.css({
display: 'inline-block',
position: 'relative'
});
if ($elem.attr('data-percent-width') == 'true')
watermark_container.css('width', '100%');
if ($elem.attr('data-percent-height') == 'true')
watermark_container.css('height', '100%');
if (old_ie) {
watermark_container.css({
zoom: 1,
display: 'inline'
});
}
$elem.wrap(watermark_container).attr('data-jq-watermark', 'processed');
if (this.nodeName.toLowerCase() == 'textarea') {
e_height = $elem.css('line-height');
e_height = e_height === 'normal' ? parseInt($elem.css('font-size')) : e_height;
e_top = ($elem.css('padding-top') != 'auto' ? parseInt($elem.css('padding-top')) : 0);
} else {
e_height = $elem.outerHeight();
if (e_height <= 0) {
e_height = ($elem.css('padding-top') != 'auto' ? parseInt($elem.css('padding-top')) : 0);
e_height += ($elem.css('padding-bottom') != 'auto' ? parseInt($elem.css('padding-bottom')) : 0);
e_height += ($elem.css('height') != 'auto' ? parseInt($elem.css('height')) : 0);
}
}
e_top += ($elem.css('margin-top') != 'auto' ? parseInt($elem.css('margin-top')) : 0);
e_margin_left = $elem.css('margin-left') != 'auto' ? parseInt($elem.css('margin-left')) : 0;
e_margin_left += $elem.css('padding-left') != 'auto' ? parseInt($elem.css('padding-left')) : 0;
watermark_label.css({
position: 'absolute',
display: 'block',
fontFamily: $elem.css('font-family'),
fontSize: $elem.css('font-size'),
color: options.color,
left: hard_left + options.left + e_margin_left,
top: options.top + e_top,
height: e_height,
lineHeight: e_height + 'px',
textAlign: 'left',
pointerEvents: 'none'
}).data('jq_watermark_element', $elem);
$.watermarker.checkVal($elem.val(), watermark_label);
watermark_label.click(function () {
$($(this).data('jq_watermark_element'))
.not('[readonly], [disabled]').filter(':visible')
.trigger('click').trigger('focus');
}
);
$elem.before(watermark_label)
.bind('focus.jq_watermark', function () {
if (!$.watermarker.checkVal($(this).val(), watermark_label))
watermark_label.stop().fadeTo(options.animDuration, options.minOpacity);
})
.bind('blur.jq_watermark change.jq_watermark', function () {
if (!$.watermarker.checkVal($(this).val(), watermark_label))
watermark_label.stop().fadeTo(options.animDuration, 1);
})
.bind('keydown.jq_watermark, paste.jq_watermark', function (e) {
$(watermark_label).hide();
})
.bind('keyup.jq_watermark', function (e) {
$.watermarker.checkVal($(this).val(), watermark_label);
});
});
return this;
};
$(function () {
$('.jq_watermark').watermark();
$('input[placeholder]:visible').watermark();
})
})(jQuery);