Created
May 7, 2017 10:45
-
-
Save AlexanderKozhevin/1030b6d7ce58fb5be3f836a8729868ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ngb-rating [(rate)]="currentRate"></ngb-rating> | |
<br> | |
<ngb-rating [(rate)]="currentRate"> | |
<ng-template let-fill="fill2"> | |
<span class="star2" [class.filled2]="fill2 === 100">★</span> | |
</ng-template> | |
</ngb-rating> | |
<br> | |
<ng-template #t let-fill="fill"> | |
<span *ngIf="fill === 100" class="star full">♥</span> | |
<span *ngIf="fill === 0" class="star">♥</span> | |
<span *ngIf="fill < 100 && fill > 0" class="star"> | |
<span class="half" [style.width.%]="fill">♥</span>♥ | |
</span> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment