gentelella/vendors/starrr
2016-05-04 23:40:49 +08:00
..
dist Update libraries 2016-05-04 23:40:49 +08:00
src Update libraries 2016-05-04 23:40:49 +08:00
.bower.json Update libraries 2016-05-04 23:40:49 +08:00
bower.json Put dependecy libraries to bower for easy updating 2016-04-24 22:26:16 +08:00
Gruntfile.coffee Put dependecy libraries to bower for easy updating 2016-04-24 22:26:16 +08:00
index.html Put dependecy libraries to bower for easy updating 2016-04-24 22:26:16 +08:00
package.json Put dependecy libraries to bower for easy updating 2016-04-24 22:26:16 +08:00
README.md Put dependecy libraries to bower for easy updating 2016-04-24 22:26:16 +08:00

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