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
|
|
|
*
|
2011-01-17 14:13:18 +00:00
|
|
|
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
2010-07-09 13:01:04 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
* http://jquery.org/license
|
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
|
|
|
*/
|
2010-07-13 13:57:58 +00:00
|
|
|
(function( $, undefined ) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2011-03-15 13:00:45 +00:00
|
|
|
$.effects.effect.highlight = function( o ) {
|
2011-03-06 23:45:43 +00:00
|
|
|
return this.queue( function() {
|
|
|
|
var elem = $( this ),
|
|
|
|
props = [ 'backgroundImage', 'backgroundColor', 'opacity' ],
|
|
|
|
mode = $.effects.setMode( elem, o.mode || 'show' ),
|
2009-07-21 04:21:50 +00:00
|
|
|
animation = {
|
2011-03-06 23:45:43 +00:00
|
|
|
backgroundColor: elem.css( 'backgroundColor' )
|
2009-07-21 04:21:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (mode == 'hide') {
|
|
|
|
animation.opacity = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-06 23:45:43 +00:00
|
|
|
$.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',
|
2011-03-03 02:00:57 +00:00
|
|
|
backgroundColor: o.color || '#ffff99'
|
2009-07-21 04:21:50 +00:00
|
|
|
})
|
2011-03-06 23:45:43 +00:00
|
|
|
.animate( animation, {
|
2009-07-21 04:21:50 +00:00
|
|
|
queue: false,
|
|
|
|
duration: o.duration,
|
2011-03-03 02:00:57 +00:00
|
|
|
easing: o.easing,
|
2009-07-21 04:21:50 +00:00
|
|
|
complete: function() {
|
|
|
|
(mode == 'hide' && elem.hide());
|
2011-03-06 23:45:43 +00:00
|
|
|
$.effects.restore( elem, props );
|
|
|
|
(mode == 'show' && !$.support.opacity && this.style.removeAttribute( 'filter' ));
|
|
|
|
jQuery.isFunction(o.complete) && o.complete.apply(this, arguments);
|
2009-07-21 04:21:50 +00:00
|
|
|
elem.dequeue();
|
|
|
|
}
|
|
|
|
});
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|