Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 459 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 459 Bytes

jquery.coins

jquery.coins is a simple jQuery plugin for generating a bunch of spinning coins to gamify any site.

Demo

$(document).ready(function(){
  $("#target").coins({
    count: 5,
    expire_callback: function(points){
      alert('you got ' + points + ' points')
    },
    got_all_coins_callback: function(){
      alert('got em all')
    }
  })
})