mirror of https://github.com/ColorlibHQ/gentelella
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
christianesperar
30814a1aab
|
9 years ago | |
---|---|---|
.. | ||
dist | 9 years ago | |
src | 9 years ago | |
.bower.json | 9 years ago | |
Gruntfile.coffee | 9 years ago | |
README.md | 9 years ago | |
bower.json | 9 years ago | |
index.html | 9 years ago | |
package.json | 9 years ago |
README.md
starrr
1-5 (or 1-n
) star rating in < 75 lines of code.
Requirements
- jQuery
Usage
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)
})
Developing
npm install
npm install -g grunt-cli
- Make changes in
src/
- Run
grunt
to compile them
License
MIT