jQuery
【jQuery】星評価プラグインStarrr
September 11, 2018

Starrrは星評価jQueryプラグイン
Create the stars
<div class='starrr'></div>
$('.starrr').starrr()
With an existing rating
$('.starrr').starrr({ rating: 4 })
With more than 5 stars
$('.starrr').starrr({ max: 10 })
Read-only
$('.starrr').starrr({ readOnly: true })
Do something with the rating…
$('.starrr').starrr({ change: function(e, value){ alert('new rating is ' + value) } })
Or if you prefer events:
$('.starrr').on('starrr:change', function(e, value){ alert('new rating is ' + value) })
MIT