2008-06-06 20:08:52 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Highlight @VERSION
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2009-02-27 11:41:40 +00:00
|
|
|
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
2008-06-06 20:08:52 +00:00
|
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
|
|
|
* and GPL (GPL-LICENSE.txt) licenses.
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2008-06-06 20:08:52 +00:00
|
|
|
* http://docs.jquery.com/UI/Effects/Highlight
|
|
|
|
*
|
|
|
|
* Depends:
|
2009-09-17 10:39:12 +00:00
|
|
|
* jquery.effects.core.js
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2008-09-20 02:04:10 +00:00
|
|
|
(function($) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
$.effects.highlight = function(o) {
|
|
|
|
return this.queue(function() {
|
2009-07-21 04:21:50 +00:00
|
|
|
var elem = $(this),
|
|
|
|
props = ['backgroundImage', 'backgroundColor', 'opacity'],
|
|
|
|
mode = $.effects.setMode(elem, o.options.mode || 'show'),
|
|
|
|
animation = {
|
|
|
|
backgroundColor: elem.css('backgroundColor')
|
|
|
|
};
|
|
|
|
|
|
|
|
if (mode == 'hide') {
|
|
|
|
animation.opacity = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.effects.save(elem, props);
|
|
|
|
elem
|
|
|
|
.show()
|
|
|
|
.css({
|
|
|
|
backgroundImage: 'none',
|
|
|
|
backgroundColor: o.options.color || '#ffff99'
|
|
|
|
})
|
|
|
|
.animate(animation, {
|
|
|
|
queue: false,
|
|
|
|
duration: o.duration,
|
|
|
|
easing: o.options.easing,
|
|
|
|
complete: function() {
|
|
|
|
(mode == 'hide' && elem.hide());
|
|
|
|
$.effects.restore(elem, props);
|
|
|
|
(mode == 'show' && !$.support.opacity && this.style.removeAttribute('filter'));
|
|
|
|
(o.callback && o.callback.apply(this, arguments));
|
|
|
|
elem.dequeue();
|
|
|
|
}
|
|
|
|
});
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|