3dcarousel
v0.0.3
Published
d jquery carousel
Downloads
7
Readme
3Dcalrousel
Awesome 3D carousel plugin
Demo
https://websoldire.github.io/3Dcalrousel/
CDN
To start working with 3Dcalrousel right away, there's a couple of CDN choices availabile to serve the files as close, and fast as possible to your users:
- https://websoldire.github.io/3Dcalrousel/jquery.newCarousel.1.1.js
- https://websoldire.github.io/3Dcalrousel/jquery.newCarousel.css
#####Example using jsDelivr
Just add a link to the css file in your <head>
:
<link rel="stylesheet" type="text/css" href="newCarousel.css">
<script src="jquery.touchSwipe.min.js"></script>
<script src="jquery.newCarousel.1.1.js"></script>
Then, before your closing <body>
tag add:
Contributing
PLEASE review CONTRIBUTING.markdown prior to requesting a feature, filing a pull request or filing an issue.
Html Settings
In 3Dcarousel 1.1 you need to follow this html structure
Example:
<div class="container">
<div class="box">
<figure><div class="one">1</div></figure>
<figure><div class="two">2</div></figure>
<figure><div class="three">3</div></figure>
<figure><div class="four">4</div></figure>
<figure><div class="five">5</div></figure>
<figure><div class="six">6</div></figure>
<figure><div class="six">7</div></figure>
<figure><div class="six">8</div></figure>
<figure><div class="six">9</div></figure>
<figure><div class="six">10</div></figure>
<figure><div class="six">11</div></figure>
<figure><div class="six">12</div></figure>
<figure><div class="six">13</div></figure>
<figure><div class="six">14</div></figure>
</div>
</div>
JavaScript setting and default options
$(".container").carousel({
timer:1500,
auto:true,
navigation:true,
prevText:"prev",
nextText:"next",
swipe:true,
infiniteLoop:true,
axes:"y",
margin:0
});