jquery-ui/ui/jquery.effects.highlight.js

52 lines
1.1 KiB
JavaScript
Raw Normal View History

/*
* jQuery UI Effects Highlight @VERSION
*
2011-01-17 14:13:18 +00:00
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Effects/Highlight
*
* Depends:
* jquery.effects.core.js
*/
(function( $, undefined ) {
2008-06-04 02:34:33 +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.mode || 'show'),
2009-07-21 04:21:50 +00:00
animation = {
backgroundColor: elem.css('backgroundColor')
};
if (mode == 'hide') {
animation.opacity = 0;
}
$.effects.save(elem, props);
2011-03-05 22:17:54 +00:00
2009-07-21 04:21:50 +00:00
elem
.show()
.css({
backgroundImage: 'none',
backgroundColor: o.color || '#ffff99'
2009-07-21 04:21:50 +00:00
})
.animate(animation, {
queue: false,
duration: o.duration,
easing: o.easing,
2009-07-21 04:21:50 +00:00
complete: function() {
(mode == 'hide' && elem.hide());
$.effects.restore(elem, props);
(mode == 'show' && !$.support.opacity && this.style.removeAttribute('filter'));
(o.complete && o.complete.apply(this, arguments));
2009-07-21 04:21:50 +00:00
elem.dequeue();
}
});
});
};
})(jQuery);