var Progress_bar = (function () {
function Progress_bar() { }
Progress_bar.prototype.progress = function () {
var _this = this;
document.getElementById('td1').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress1();
}, 300);
};
Progress_bar.prototype.progress1 = function () {
var _this = this;
document.getElementById('td2').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress2();
}, 300);
};
Progress_bar.prototype.progress2 = function () {
var _this = this;
document.getElementById('td3').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress3();
}, 300);
};
Progress_bar.prototype.progress3 = function () {
var _this = this;
document.getElementById('td4').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress4();
}, 300);
};
Progress_bar.prototype.progress4 = function () {
var _this = this;
document.getElementById('td5').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress5();
}, 300);
};
Progress_bar.prototype.progress5 = function () {
var _this = this;
document.getElementById('td6').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress6();
}, 300);
};
Progress_bar.prototype.progress6 = function () {
var _this = this;
document.getElementById('td7').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress7();
}, 300);
};
Progress_bar.prototype.progress7 = function () {
var _this = this;
document.getElementById('td8').style.backgroundColor = '#82E1BD';
setTimeout(function () {
_this.progress();
}, 300);
};
Progress_bar.prototype.progress8 = function () {
document.getElementById('td8').style.backgroundColor = '#82E1BD';
};
return Progress_bar;
})();
window.onload = function () {
var obj = new Progress_bar();
obj.progress();
};
//@ sourceMappingURL=app.js.map |