Effects core: Fixed indentation for color animation overrides.

This commit is contained in:
Scott González 2009-06-12 13:26:45 +00:00
parent b129e79ba7
commit f22f205cfc

View File

@ -237,26 +237,23 @@ $.fn.extend({
} }
}); });
/*
* jQuery Color Animations
* Copyright 2007 John Resig
* Released under the MIT and GPL licenses.
*/
// We override the animation for all of these color styles // override the animation for color styles
$.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){ $.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor',
$.fx.step[attr] = function(fx) { 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'],
if ( fx.state == 0 ) { function(i,attr){
fx.start = getColor( fx.elem, attr ); $.fx.step[attr] = function(fx) {
fx.end = getRGB( fx.end ); if (fx.state == 0) {
} fx.start = getColor( fx.elem, attr );
fx.end = getRGB( fx.end );
}
fx.elem.style[attr] = "rgb(" + [ fx.elem.style[attr] = "rgb(" + [
Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0],10), 255), 0), Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0],10), 255), 0),
Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1],10), 255), 0), Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1],10), 255), 0),
Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2],10), 255), 0) Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2],10), 255), 0)
].join(",") + ")"; ].join(",") + ")";
}; };
}); });
// Color Conversion functions from highlightFade // Color Conversion functions from highlightFade