search for: tocolor

Displaying 1 result from an estimated 1 matches for "tocolor".

Did you mean: nocolor
2005 Jun 28
1
Thomas script.aculo.us (important bug and add ons)
...f(arguments.length>1){ this.r=arguments[0]; this.g=arguments[1]; this.b=arguments[2]; }else{ this.r=parseInt(color.substr(0,2),16); this.g=parseInt(color.substr(2,2),16); this.b=parseInt(color.substr(4,2),16); } } Color.prototype.toString=function(){ var s=""; s+=this.r.toColorPart().toUpperCase(); s+=this.g.toColorPart().toUpperCase(); s+=this.b.toColorPart().toUpperCase(); return s; } Effect2.Glow=Class.create(); Effect2.Glow.prototype=(new Effect2.Base()).extend({ initialize:function(){ this.element=$(arguments[0]); options={ from:0.0, to:1.0, fromCol...