Created
February 7, 2023 17:53
-
-
Save andrewarosario/4193c5c1c937aa30d2fd06de17848e04 to your computer and use it in GitHub Desktop.
This file contains 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
<i>{{ displayText }}</i> | |
<div class="stars" [ngClass]="{ disabled }"> | |
<ng-container *ngFor="let rating of ratings"> | |
<svg | |
title="{{ rating.text }}" | |
height="25" | |
width="23" | |
class="star rating" | |
[ngClass]="{ selected: rating.stars <= value }" | |
(mouseover)="displayText = !disabled ? rating.text : ''" | |
(mouseout)="displayText = ratingText ? ratingText : ''" | |
(click)="setRating(rating)" | |
> | |
<polygon | |
points="9.9, 1.1, 3.3, 21.78, 19.8, 8.58, 0, 8.58, 16.5, 21.78" | |
style="fill-rule:nonzero;" | |
/> | |
</svg> | |
</ng-container> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment