Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 926 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 926 Bytes

jQuery Slot Machine Plugin

jQuery plugin which applies a Slot Machine Scrolling effect to a list of images.

Getting Started

Download the production version or the development version.

In your web page:

<script src="jquery.js"></script>
<script src="dist/jquery-slotmachine.min.js"></script>
<script>
jQuery(function($) {
  $("#slotMachine1").slotMachine({height: 350, width:500});
});
</script>

<div id="slotMachine1">
	<a href="#"><img src="image_1.png" height="200"/></a>
	<a href="#"><img src="image_2.png" height="100"/></a>
	<a href="#"><img src="image_3.png" height="150"/></a>
</div>

Documentation

(Coming soon)

Examples

(Coming soon)

Release History

(Nothing yet)