Skip to content

ofrzeta/jquery-karussell

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

jQuery Karussell

Karussell is just another carousel plugin for jQuery. Contrary to other plugins it offers continuous carousel playback without skipping back to the first frame.

Features

  • jQuery plugin for carousel without skipping back to start
  • chainable
  • just basic functionality, if you want more, go ahead, fork and send a PR

Usage

Include "jquery.plugin.karussell-1.0.js" in your HTML like so:

	<script src="jquery.plugin.karussell-1.0.js" type="text/javascript" charset="utf-8"></script>

Call .karussell() on the <div> that contains the individual carousel frames (enclosed by <div>s preferrably):

	$('#k1').karussell();
	<div id="k1">
       	<div class="data"><img src="pano1.jpg"></div>
       	<div class="data"><img src="pano2.jpg"></div>
		<div class="data"><img src="pano3.jpg"></div>
	</div>

Optionally, Karussell supports two parameters, "wipetime" and "pause", indicating the time for sliding a frame and the pause, respectively:

	$('#k1').karussell({wipetime: 500, pause: 2000});

Example

see the plugin in action on http://ok200.org/carousel

License

jQuery Karussell is licensed under the MIT License

About

jquery carousel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%