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
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright 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-06-06 20:08:52 +00:00
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Highlight Effect
|
|
|
|
//>>group: Effects
|
|
|
|
//>>description: Highlights the background of an element in a defined color for a custom duration.
|
|
|
|
//>>docs: http://api.jqueryui.com/highlight-effect/
|
|
|
|
//>>demos: http://jqueryui.com/effect/
|
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
(function( factory ) {
|
|
|
|
if ( typeof define === "function" && define.amd ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define([
|
|
|
|
"jquery",
|
2013-12-02 18:36:12 +00:00
|
|
|
"./effect"
|
2013-07-12 16:40:48 +00:00
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
|
|
|
}(function( $ ) {
|
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
return $.effects.define( "highlight", "show", function( options, done ) {
|
|
|
|
var element = $( this ),
|
2011-06-21 05:23:52 +00:00
|
|
|
animation = {
|
2012-12-26 13:35:42 +00:00
|
|
|
backgroundColor: element.css( "backgroundColor" )
|
2011-06-21 05:23:52 +00:00
|
|
|
};
|
2009-07-21 04:21:50 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
if ( options.mode === "hide" ) {
|
2011-06-21 05:23:52 +00:00
|
|
|
animation.opacity = 0;
|
|
|
|
}
|
2009-07-21 04:21:50 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
$.effects.saveStyle( element );
|
2012-10-22 01:50:03 +00:00
|
|
|
|
2012-12-26 13:35:42 +00:00
|
|
|
element
|
2011-06-21 05:23:52 +00:00
|
|
|
.css({
|
|
|
|
backgroundImage: "none",
|
2012-12-26 13:35:42 +00:00
|
|
|
backgroundColor: options.color || "#ffff99"
|
2011-06-21 05:23:52 +00:00
|
|
|
})
|
|
|
|
.animate( animation, {
|
|
|
|
queue: false,
|
2012-12-26 13:35:42 +00:00
|
|
|
duration: options.duration,
|
|
|
|
easing: options.easing,
|
|
|
|
complete: done
|
2011-06-21 05:23:52 +00:00
|
|
|
});
|
2012-12-26 13:35:42 +00:00
|
|
|
});
|
2008-06-06 19:47:31 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
}));
|