2009-10-12から1日間の記事一覧

指定秒後に、フェードアウトする その2?

var Fadeout = function ( o ) { this.obj = o; this.decrease(); this.obj.timerId = setTimeout( (function ( that ) { return function ( ) { that.decrease(1); }; } )( this ), this.obj.wait ); }; Fadeout.prototype.decrease = function ( sw ) { va…