This Angular library generates stars for rating provided with properties to control every aspect of generated star.
- Star ratings with decimal support (upto one precision).
- Selected star color and unselected star color can be controlled as per your need.
- Star size can be controlled as per your need.
- Total stars can be controlled as per your need.
- Npm install ng-star
- In angular component wherever you want to use it, import this component and then
<lib-ng-star [rating]="7.5" [selectedColor]="'blue'" [unselectedColor]="'black'" [starSize]="30" [totalStars]="10"></lib-ng-star>
7.5 stars with blue color and remaining 2.5 stars with black color will be generated where each star will have size of 30 px.
Published On NPM 'https://www.npmjs.com/package/ng-star'
This Angular library generates stars for rating provided with properties to control every aspect of generated star.
This Angular library generates stars for rating provided with properties to control every aspect of generated star.
Explore the docs »
Report Bug
·
Request Feature
This Angular library generates stars for rating provided with properties to control every aspect of generated star.
To get a local copy up and running follow these simple steps.
- I have used boostrap 4 and font awesome cdn , so make sure you are connected to internet or boostrap and fontawesome are exported for use.
- install package from npmjs
npm install ng-star
example = <lib-ng-star [rating]="7.5" [selectedColor]="'blue'" [unselectedColor]="'black'" [starSize]="30" [totalStars]="10"></lib-ng-star>
For the stars to generate correctly, import font awesome and boostrap in your project or connect to internet: You can use these properties to control how your stars will appear.
[rating] = "number"
This is used to provide rating to the component. Precision of upto 1 point after decimal is supported.(default 0)[selectedColor]="'blue'"
This is used to provide color to selected stars(in this ex blue).(default yellow)[unselectedColor]="'black'"
This is used to provide color to unselected stars(in this ex black).(default white)[starSize]="number"
This is used to provide size of each star in px(default 30px).[totalStars]="number"
This is used to provide total number of stars(default 5).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Abhishek Kumar - Email
Project Link: https://github.com/sami-colon/ng-star