A simple, lightweight jQuery plugin to make slot machine animation effect.
[Check the example page!] (http://josex2r.github.io/jQuery-SlotMachine/)
Include the script after the jQuery library:
<script src="/path/to/jquery.slotmachine.js"></script>
Creating the machine:
var machine = $(foo).slotMachine( params );
Shuffle:
machine.shuffle( repeat, onStopCallback ); //No args to make rotate infinitely
Change the selected element:
machine.prev(); //Previous element
machine.next(); //Next element
Get selected element:
machine.active(); //Returns element index inside an object
Check if the machine is running:
machine.isRunning(); //Returns boolean
Params must be an object, optionally containing the next parammeters:
Set the first element
active: 0
Set spin animation time
delay: 200
Pass an int as miliseconds to make the machine auto rotate
repeat: false
##License
jQuery-SlotMachine is released under the MIT License.