Performant and Touch-Friendly Carousel Plugin for jQuery - microfiche.js

File Size: 475 KB
Views Total: 9792
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Performant and Touch-Friendly Carousel Plugin for jQuery - microfiche.js

microfiche.js is a easy-to-use and touch-friendly jquery Carousel Plugin that helps you to quickly create a performant carousel-like slideshow with smooth sliding effect.

See also:

How to use it:

1. Include jQuery library and js microfiche library anywhere on your page

<script src="jquery.min.js"></script>
<script src="microfiche.js"></script>

2. Include microfiche.css to style your plugin

<link rel="stylesheet" href="microfiche.css">

3. Basic html structure

<div class="example" id="demo">
  <div>
    <ul>

      <li><img src="images/1.jpg" width="160" height="160"></li>
      <li><img src="images/2.jpg" width="160" height="160"></li>
      <li><img src="images/3.jpg" width="160" height="160"></li>
      <li><img src="images/4.jpg" width="160" height="160"></li>
      <li><img src="images/5.jpg" width="160" height="160"></li>

    </ul>
  </div>
</div>

4. Call the plugin on the top container.

$('#demo').microfiche();

5. Possible options to customize the plugin.

$('#demo').microfiche({
  autoplay        : false,
  autopause       : false,
  buttons         : true,
  bullets         : true,
  cyclic          : false,
  keyboard        : false,
  swipe           : true,
  clickToAdvance  : false,
  minDuration     : 250,
  duration        : 500,
  maxDuration     : 500,
  dragThreshold   : 25,
  elasticity      : 0.5,
  swipeThreshold  : 0.125,
  refreshOnResize : false,
  prevButtonLabel : '&larr;',
  nextButtonLabel : '&rarr;',
  noScrollAlign   : 'left'
});

Changelog:

v1.8.3 (2015-08-26)

  • Bugfixed

v1.8.0 (2014-03-19)

  • Add noScrollAlign setting
  • Fix refreshOnResize bug

v1.7.0 (2014-03-06)

  • Add destroy 
  • Improve refresh logic 

v1.6.0 (2014-02-25)

  • Add refreshOnResize

v1.4.0 (2013-09-17)

  • updated to the latest version

This awesome jQuery plugin is developed by withassociates. For more Advanced Usages, please check the demo page or visit the official website.