]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ytree/TreeView/anim/TVFadeIn.js
Release 6.5.0
[Github/sugarcrm.git] / include / ytree / TreeView / anim / TVFadeIn.js
1 /* Copyright (c) 2006 Yahoo! Inc. All rights reserved. */
2 YAHOO.widget.TVFadeIn=function(el,callback){this.el=el;this.callback=callback;this.logger=new ygLogger("TVFadeIn");};YAHOO.widget.TVFadeIn.prototype={animate:function(){var tvanim=this;var s=this.el.style;s.opacity=0.1;s.filter="alpha(opacity=10)";s.display="";var dur=0.4;var a=new YAHOO.util.Anim(this.el,{opacity:{from:0.1,to:1,unit:""}},dur);a.onComplete.subscribe(function(){tvanim.onComplete();});a.animate();},onComplete:function(){this.callback();}};