Coder Social home page Coder Social logo

skeleton-js-carousel's Introduction

JS Skeleton Carousel

A quick way to get a carousel and its DOM elements up and running with configurable options (below). All CSS should be written to suit your needs.

Creating a Carousel

Only thing needed is a DOM element with an unordered list of items inside:

<div id="carousel">
	<ul>
		<li>Slide 1</li>
		<li>Slide 2</li>
		<li>Slide 3</li>
		<li>Slide 4</li>
	</ul>
</div>

Include the minified script:

<script src="path-to/carousel.min.js"></script>

Create a new carousel instance:

var homeCarousel = new Carousel();
homeCarousel.init();

Or, pass in an options object:

var opts = {
	elementClass: 'front-page-carousel',
	rotateTime: 7000,
	arrows: false
};

var homeCarousel = new Carousel(opts);
homeCarousel.init();

Available Options

The only required option is "elementId." If your DOM element id is different than the default ('carousel'), pass in the id of your DOM element here. Other available options and their defaults are:

elementId: 'carousel',
elementClass: 'my-carousel', // Custom CSS class to be appended to carousel DOM elements
autoPlay: true, // Auto play the carousel
rotateTime: 5000, // Time between CSS class swapping
nav: true, // Add nav item for each slide in the carousel
arrows: true, // Add previous/next navigation
activeClass: 'active' // CSS class name for "active" elements in the carousel

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.