You better not use jquery and use a directive, such as a progress circle , but you can write a directive that uses the jquery plugin.
Angular, , , ,
import { Directive, ElementRef, HostListener, Input } from '@angular/core';
@Directive({
selector: '[circliful]'
})
export class CirclifulDirective {
constructor(private el: ElementRef) {
$(el).circliful({
animationStep: 5,
foregroundBorderWidth: 5,
backgroundBorderWidth: 15,
percent: 75
});
}
}
.