jquery-ui/ui/jquery.ui.effect-highlight.js

50 lines
1007 B
JavaScript
Raw Normal View History

/*!
* jQuery UI Effects Highlight @VERSION
*
2012-03-08 15:53:08 +00:00
* Copyright 2012, 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:
2012-06-15 16:47:12 +00:00
* jquery.ui.effect.js
*/
(function( $, undefined ) {
2008-06-04 02:34:33 +00:00
$.effects.effect.highlight = function( o, done ) {
var elem = $( this ),
props = [ "backgroundImage", "backgroundColor", "opacity" ],
mode = $.effects.setMode( elem, o.mode || "show" ),
animation = {
backgroundColor: elem.css( "backgroundColor" )
};
2009-07-21 04:21:50 +00:00
2011-06-21 06:15:42 +00:00
if (mode === "hide") {
animation.opacity = 0;
}
2009-07-21 04:21:50 +00:00
$.effects.save( elem, props );
elem
.show()
.css({
backgroundImage: "none",
backgroundColor: o.color || "#ffff99"
})
.animate( animation, {
queue: false,
duration: o.duration,
easing: o.easing,
complete: function() {
2011-06-21 06:15:42 +00:00
if ( mode === "hide" ) {
elem.hide();
}
$.effects.restore( elem, props );
done();
}
});
};
})(jQuery);