A very simple jQuery slider.
Include slider.js and slider.css. Or install with bower $ bower install https://github.com/9miles/Slider
HTML
<div class="slider">
<div class="slider-items">
<div class="slider-item">Slide 1</div>
<div class="slider-item">Slide 2</div>
<div class="slider-item">Slide 3</div>
</div>
</div>Javascript
$('.slider').slider();Slider is written in Coffeescript which is compiled into Javascript via Grunt.
You must first install Nodejs in order to use NPM to get setup to develope this project.
- Install Node
- Clone the Slider repository
- Install node dependencies with
$ npm install - Install bower dependencies with
$ bower install - Run grunt
$ gruntto lint, compile, concat, build and watch