2012-02-27 00:49:51 +00:00
|
|
|
/*!
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Effects Highlight @VERSION
|
2012-07-04 13:08:08 +00:00
|
|
|
* http://jqueryui.com
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
2012-07-04 13:08:08 +00:00
|
|
|
* Copyright 2012 jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2012-09-26 23:06:20 +00:00
|
|
|
* http://api.jqueryui.com/highlight-effect/
|
2008-06-06 20:08:52 +00:00
|
|
|
*
|
|
|
|
* Depends:
|
2012-06-15 16:47:12 +00:00
|
|
|
* jquery.ui.effect.js
|
2008-06-06 20:08:52 +00:00
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2011-06-21 06:11:46 +00:00
|
|
|
$.effects.effect.highlight = function( o, done ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
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") {
|
2011-06-21 05:23:52 +00:00
|
|
|
animation.opacity = 0;
|
|
|
|
}
|
2009-07-21 04:21:50 +00:00
|
|
|
|
2011-06-21 05:23:52 +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();
|
|
|
|
}
|
2011-06-21 05:23:52 +00:00
|
|
|
$.effects.restore( elem, props );
|
2011-06-21 06:11:46 +00:00
|
|
|
done();
|
2011-06-21 05:23:52 +00:00
|
|
|
}
|
|
|
|
});
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|