1.0.4 • Published 8 years ago

imageflip v1.0.4

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

imageflip

A minimal javascript slideshow library.

Install

  • npm: npm install imageflip
  • Bower: bower install imageflip

Usage

<!doctype HTML>
<img id='slideshow' />
<script src="../index.js"></script>
<script>
var urls = [ 'image0.png', 'image1.png', 'image2.png' ];
var el = document.getElementById('slideshow');

imageflip(el, urls, 1000, function(i){
    console.log(i);
}).start();

</script>

Test