Minimal jQuery Liquid Image Carousel Plugin - Liquid Carousel

File Size: 131 KB
Views Total: 6610
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Minimal jQuery Liquid Image Carousel Plugin - Liquid Carousel

Liquid Carousel is a lightweight jQuery slider plugin for creating a responsive & liquid styled image carousel slider with one line javascript.

How to use it:

1. Include the latest jQuery library and jQuery Liquid Carousel on the web page

<link type='text/css' rel='stylesheet' href='css/liquidcarousel.css' />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.liquidcarousel.pack.js"></script>

2. Create the html

<div id="liquid" class="liquid"> <span class="previous"></span>
<div class="wrapper">
<ul>
<li><a href="#" title="image 01"><img src="images/01.jpg" width="88" height="126" alt="image 01" border="0" /></a></li>
<li><a href="#" title="image 02"><img src="images/02.jpg" width="88" height="126" alt="image 02" border="0" /></a></li>
<li><a href="#" title="image 03"><img src="images/03.jpg" width="88" height="126" alt="image 03" border="0" /></a></li>
...
</ul>
</div>
<span class="next"></span> </div>

3. Call the plugin with options.

$(document).ready(function() {

  $('#liquid').liquidcarousel({

    // the height of the list
    height: 150,

    // the duration of the animation
    duration: 100,

    // hide arrows if all of the list items are visible
    hidearrows: true
    
  });

});

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