| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Simple, easy-to-use, countdown for angular
npm install @kirathe/count-down-timer --save
import CountDownTimerComponent。
import { CountDownTimerComponent } from '@kirathe/count-down-timer';
@Component({
selector: 'app-header',
standalone: true,
imports: [CommonModule, CountDownTimerComponent],
template: `
<count-down-timer [dDay]="date"></count-down-timer>
`,
styleUrls: ['./header.component.scss'],
})
export class HeaderComponent { date = new Date('2023-12-06 04:29:40'); }If you want to use the default template, you can use the following code:
<count-down-timer [dDay]="date"></count-down-timer>
If you want to customize the template, you can use the following code:
<count-down-timer [countDownTimerTemplate]="timerTemplate" [dDay]="date">
<ng-template
#timerTemplate
let-days="daysToDDay"
let-hours="hoursToDDay"
let-minutes="minutesToDDay"
let-seconds="secondsToDDay">
<label class="text-danger">
Count Down To The Next Release: {{ days }}
<a class="h6">Day(s) {{ hours }}: {{ minutes }}: {{ seconds }}</a>
</label>
</ng-template>
</count-down-timer>Please follow this guidelines when reporting bugs and feature requests:
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)
| Back | FazBrowse Home | New Git URL |