ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
31 lines (26 loc) • 814 B
text/typescript
import {Component} from '@angular/core';
export class NzDemoProgressCircleDynamicComponent {
_percent = 0;
increase() {
this._percent = this._percent + 10;
if (this._percent > 100) {
this._percent = 100;
}
}
decline() {
this._percent = this._percent - 10;
if (this._percent < 0) {
this._percent = 0;
}
}
}