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
|
|
|
*
|
2009-01-03 21:55:13 +00:00
|
|
|
* Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
|
2008-06-06 20:08:52 +00:00
|
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
|
|
|
* and GPL (GPL-LICENSE.txt) licenses.
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2008-06-06 20:08:52 +00:00
|
|
|
* http://docs.jquery.com/UI/Effects/Highlight
|
|
|
|
*
|
|
|
|
* Depends:
|
|
|
|
* effects.core.js
|
|
|
|
*/
|
2008-09-20 02:04:10 +00:00
|
|
|
(function($) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
$.effects.highlight = function(o) {
|
|
|
|
|
|
|
|
return this.queue(function() {
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Create element
|
|
|
|
var el = $(this), props = ['backgroundImage','backgroundColor','opacity'];
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Set options
|
|
|
|
var mode = $.effects.setMode(el, o.options.mode || 'show'); // Set Mode
|
|
|
|
var color = o.options.color || "#ffff99"; // Default highlight color
|
|
|
|
var oldColor = el.css("backgroundColor");
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Adjust
|
|
|
|
$.effects.save(el, props); el.show(); // Save & Show
|
|
|
|
el.css({backgroundImage: 'none', backgroundColor: color}); // Shift
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animation
|
|
|
|
var animation = {backgroundColor: oldColor };
|
|
|
|
if (mode == "hide") animation['opacity'] = 0;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
// Animate
|
|
|
|
el.animate(animation, { queue: false, duration: o.duration, easing: o.options.easing, complete: function() {
|
|
|
|
if(mode == "hide") el.hide();
|
|
|
|
$.effects.restore(el, props);
|
2008-11-18 01:54:45 +00:00
|
|
|
if (mode == "show" && $.browser.msie) this.style.removeAttribute('filter');
|
2008-06-06 19:47:31 +00:00
|
|
|
if(o.callback) o.callback.apply(this, arguments);
|
|
|
|
el.dequeue();
|
|
|
|
}});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-06 19:47:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
})(jQuery);
|