Coder Social home page Coder Social logo

jcarousel's Introduction

jCarousel - Riding carousels with jQuery

jCarousel is a jQuery plugin for controlling a list of items in horizontal or vertical order. The items, which can be static HTML content or loaded with (or without) AJAX, can be scrolled back and forth (with or without animation).

Getting started

To use the jCarousel component, include the jQuery library, the jCarousel source file and a jCarousel skin stylesheet file inside the <head> tag of your HTML document:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="/path/to/jquery.jcarousel.min.js"></script>
<link rel="stylesheet" type="text/css" href="/path/to/skin.css" />

jCarousel expects a very basic HTML markup structure inside your HTML document:

<div id="mycarousel" class="jcarousel">
    <ul>
        <li>...</li>
        <li>...</li>
    </ul>
</div>

This document refers to the elements as root element, list element and item element(s):

<div id="mycarousel" class="jcarousel"> <------------------| Root element
    <ul> <--------------------------------| List element   |
        <li>...</li> <---| Item element   |                |
        <li>...</li> <---| Item element   |                |
    </ul> <-------------------------------|                |
</div> <---------------------------------------------------|

To setup jCarousel, add the following code inside the <head> tag of your HTML document:

<script type="text/javascript">
$(function() {
    $('#mycarousel').jcarousel({
        // Configuration goes here
    });
});
</script>

These are the minimal CSS settings for a horizontal carousel:

.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 20000em;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
}

.jcarousel[dir=rtl] li {
    float: right;
}

Skinning jCarousel

Note: These are only conventions and nothing of it is required. You can adjust the class names or the whole handling of the skinning.

If you want to provide different skins for your carousel, setup with the following markup:

<div class="jcarousel-skin-name">
    <div id="mycarousel" class="jcarousel">
        <ul>
            <li>...</li>
            <li>...</li>
        </ul>
    </div>
</div>

We simply surround the root element with a additional <div class="jcarousel-skin-name"> to have a skin namespace. We can now style within this namespace:

.jcarousel-skin-default .jcarousel {
    /* ... */
}

.jcarousel-skin-default .jcarousel ul {
    /* ... */
}

.jcarousel-skin-default .jcarousel li {
    /* ... */
}

The download package contains some example skin packages. Feel free to build your own skins based on it.

Note: Skins will follow!

Configuration

jCarousel accepts a list of options to control the behaviour of the carousel. Here is the list of options you may set:

Property Type Default Description
list string ">ul:eq(0)" jQuery selector to select the list inside the root element.
items string ">li" jQuery selector to select the items inside the list element.
animation integer|string|object "normal" The speed of the scroll animation as string in jQuery terms ("slow" or "fast") or milliseconds as integer (See the jQuery Documentation). If set to 0, animation is turned off. Alternatively, this can be a map of options like the one jQuery.animate accepts as second argument.
wrap string null Specifies whether to wrap at the first/last item (or both) and jump back to the start/end. Options are "first", "last", "both" or "circular" as string. If set to null, wrapping is turned off (default).
vertical boolean null Specifies whether the carousel appears in vertical orientation. Changes the carousel from a left/right style to a up/down style carousel. If not set, jCarousel looks for a class jcarousel-vertical on the root element and if found, automatically sets vertical to true.
rtl boolean null Specifies wether the carousel appears in RTL (Right-To-Left) mode. If not set, jCarousel looks for dir attribute with a value of rtl on the root element (or to any of its parent elements) and if found, automatically sets rtl to true.
center boolean false Specifies wether the carousel should be centered inside the root element. Note: This feature is experimental and may not work with all carousel setups.

Navigating the carousel

By default, jCarousel offers no built in controls to navigate through the carousel. But you can simply implement navgiation controls using the scroll method.

$('#mycarousel').jcarousel('scroll', target);

Available formats for the target argument are:

Format Description Example
index Scrolls to the item at the given index (Note that indexes are 0-based).
$('#mycarousel').jcarousel('scroll', 0);
-index Scrolls to the item at the given index counting backwards from the last item.
$('#mycarousel').jcarousel('scroll', -1);
object Scrolls to the given DOM object.
$('#mycarousel').jcarousel('scroll', $('#mycarousel li:eq(2)').get(0));
+=offset Scrolls the carousel forward by the given offset relatively from the current position.
$('#mycarousel').jcarousel('scroll', '+=1');
-=offset Scrolls the carousel backwards by the given offset relatively from the current position.
$('#mycarousel').jcarousel('scroll', '-=1');

A simple example for previous and next controls:

$('#mycarousel_prev_button').click(function() {
    $('#mycarousel').jcarousel('scroll', '-=1');
});

$('#mycarousel_next_button').click(function() {
    $('#mycarousel').jcarousel('scroll', '+=1');
});

A more comfortable way is to use one of the navigation plugins:

  • jquery.jcarousel.button.js
  • jquery.jcarousel.pagination.js

Defining the number of visible items

Sometimes people are confused how to define the number of visible items because there is no option for this as they expect.

You simply define the number of visible items by defining the width (or height for a vertical carousel) of the element which surrounds the list (if you use the default from this document, you do that with the class .jcarousel in your skin stylesheet).

This offers a lot of flexibility, because you can define the width in pixel for a fixed carousel or in percent for a flexible carousel.

Vertical carousels

To create a vertical carousel, set the vertical option to true:

$('#mycarousel').jcarousel({vertical: true});

Alternatively, you can simply use a class for your root element which contains the string jcarousel-vertical:

<div class="jcarousel-skin-name">
    <div id="mycarousel" class="jcarousel-vertical">
        <ul>
            <!-- The content goes in here -->
        </ul>
    </div>
</div>

RTL (Right-To-Left) carousels

To create a carousel in RTL mode, set the rtl option to true:

$('#mycarousel').jcarousel({rtl: true});

Alternatively, you can simply add the dir attribute with a value of rtl to the root element (or to any of its parent elements):

<div class="jcarousel-skin-name">
    <div id="mycarousel" class="jcarousel" dir="rtl">
        <ul>
            <!-- The content goes in here -->
        </ul>
    </div>
</div>

Accessing the jCarousel instance

If you have created a carousel like:

$(function() {
    $('#mycarousel').jcarousel();
});

You can later access the jCarousel instance with:

var jcarousel = $('#mycarousel').data('jcarousel');

// Call a method
jcarousel.scroll('+=2');

Methods can be also called directly like this:

$('#mycarousel').jcarousel('scroll', '+=2');

The first argument is the method name. The following arguments are the arguments for the called method.

Available methods are:

Method Description
.jcarousel('destroy');
Removes the jCarousel functionality completely. This will return the element back to its pre-init state.
.jcarousel('reload');
Reloads the carousel. This method is useful to reinitialize the carousel if you have changed the content of the list from the outside.
.jcarousel('items');
Returns all items as jQuery object.
.jcarousel('scroll', target [, animate [, callback]]);
Scrolls to a specific item or relative by a given offset (See section "Navigating the carousel" for more information about the target argument). If the argument animate is given and false, it just jumps to the position without animation. If callback is given and a valid callback, it is triggered after the animation is finished.
.jcarousel('option', name, [value]);
Get or set any jCarousel option. If no value is specified, will act as a getter.
.jcarousel('option', options);
Set multiple jCarousel options at once by providing an options object.
.jcarousel('option', callback);
Set multiple jCarousel options by passing a function which returns an options object. The function is executed in the context of the carousel instance.

Manipulating the carousel

If you manipulate the carousel from the outside (eg. adding or removing items from the list), ensure that you call reload() afterwards so that jCarousel becomes aware of the changes:

$(function() {
    $('#mycarousel').jcarousel({
        // Configuration goes here
    });

    // Append items
    $('#mycarousel ul')
        .append('<li>Item 1</li>')
        .append('<li>Item 2</li>');

    // Reload carousel
    $('#mycarousel').jcarousel('reload');
});

jCarousel specific events

After initialization, jCarousel triggers specific events on the root element and the items of the carousel.

Available root element events are:

Event Description Example
jcarouselinit Triggered on initialization of the carousel.
$('#mycarousel').bind('jcarouselinit', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouselinitend Triggered after initialization of the carousel.
$('#mycarousel').bind('jcarouselinitend', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouselreload Triggered when the reload method is called.
$('#mycarousel').bind('jcarouselreload', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouselreloadend Triggered after the reload method is called.
$('#mycarousel').bind('jcarouselreload', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouseldestroy Triggered when the destroy method is called.
$('#mycarousel').bind('jcarouseldestroy', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouseldestroyend Triggered after the destroy method is called.
$('#mycarousel').bind('jcarouseldestroyend', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouselscroll Triggered when the scroll method is called.
$('#mycarousel').bind('jcarouselscroll', function(carousel, target, animate) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
    // "target" is the target argument passed to the `scroll` method
    // "animate" is the animate argument passed to the `scroll` method 
    //      indicating whether jCarousel was requested to do an animation
});
jcarouselscrollend Triggered after the scroll method is called. Note that this method is triggered at the end of the scroll method and not at the end of a animation.
$('#mycarousel').bind('jcarouselscrollend', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
    // "animated" is a boolean indicating whether jCarousel actually moved
});
jcarouselanimate Triggered when jCarousel starts a animation.
$('#mycarousel').bind('jcarouselanimate', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});
jcarouselanimateend Triggered after jCarousel has finished a animation.
$('#mycarousel').bind('jcarouselanimateend', function(carousel) {
    // "this" refers to the root element
    // "carousel" is the jCarousel instance
});

Note: Some events like jcarouselinit are triggered from the constructor, so you have to bind the events before you initialize the carousel:

$('#mycarousel')

    // Bind first
    .bind('jcarouselinit', function(carousel) {
        // Do something
    })

    // Initialize at last step
    .jcarousel();

Available item events are:

Event Description Example
jcarouselitemfirstin Triggered when the item becomes the first visible item.
$('#mycarousel li').bind('jcarouselitemfirstin', function(carousel) {
    // This is now the first visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemfirstout Triggered when the item is no longer the first visible item.
$('#mycarousel li').bind('jcarouselitemfirstout', function(carousel) {
    // This is no longer the first visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemlastin Triggered when the item becomes the last visible item.
$('#mycarousel li').bind('jcarouselitemlastin', function(carousel) {
    // This is now the last visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemlastout Triggered when the item is no longer the last visible item.
$('#mycarousel li').bind('jcarouselitemlastout', function(carousel) {
    // This is no longer the last visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemvisiblein Triggered when the item becomes a visible item.
$('#mycarousel li').bind('jcarouselitemvisiblein', function(carousel) {
    // This is now a visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemvisibleout Triggered when the item is no longer a visible item.
$('#mycarousel li').bind('jcarouselitemvisibleout', function(carousel) {
    // This is no longer a visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemfullyvisiblein Triggered when the item becomes a fully visible item.
$('#mycarousel li').bind('jcarouselitemfullyvisiblein', function(carousel) {
    // This is now a fully visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});
jcarouselitemfullyvisibleout Triggered when the item is no longer a fully visible item.
$('#mycarousel li').bind('jcarouselitemfullyvisibleout', function(carousel) {
    // This is no longer a fully visible item
    // "this" refers to the item element
    // "carousel" is the jCarousel instance
});

jCarousel specific classes

jCarousel adds specific classes to the carousel items indicating their current status.

This is useful for selecting items on runtime or add specific styling to them.

Class Description Example
.jcarousel-item-target Indicates the targetted item.
$('#mycarousel .jcarousel-item-target');
.jcarousel-item-first Indicates the first visible item.
$('#mycarousel .jcarousel-item-first');
.jcarousel-item-last Indicates the last visible item.
$('#mycarousel .jcarousel-item-last');
.jcarousel-item-visible Indicates all visible items.
$('#mycarousel .jcarousel-item-visible');
.jcarousel-item-fullyvisible Indicates all fully visible items.
$('#mycarousel .jcarousel-item-fullyvisible');

Credits

jCarousel is written on top of jQuery and was originally inspired by the Carousel Component by Bill Scott.

jcarousel's People

Contributors

jsor avatar lespacedunmatin avatar iammerrick avatar

Stargazers

Richard Filippi avatar

Watchers

Richard Filippi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.