Forked from benmoss/JCarousel lite multiple carousels
Created
March 26, 2011 17:55
-
-
Save kswedberg/888482 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(window).load(function() { | |
$(".carousel").jCarouselLite({ | |
btnNext: function() { | |
return $(this).find(".next-gallery"); | |
}, | |
btnPrev: function() { | |
return $(this).find(".previous-gallery"); | |
}, | |
visible: 1 | |
}); | |
}); | |
</script> | |
<div id="c-1" class='carousel'> | |
<ul> | |
<li> | |
<a href="#"> | |
<img src="foto-op.jpg" /> | |
</a> | |
</li> | |
<li> | |
<a href="#"> | |
<img src="59453-10100255219345305.jpg" /> | |
</a> | |
</li> | |
</ul> | |
<a href="#" class="previous-gallery">Previous Image</a> | |
<a href="#" class="next-gallery">Next Image</a> | |
</div> | |
<div id="c-2" class='carousel'> | |
<ul> | |
<li> | |
<a href="#"> | |
<img src="59453.jpg" /> | |
</a> | |
</li> | |
<li> | |
<a href="#"> | |
<img src="59453.jpg" /> | |
</a> | |
</li> | |
</ul> | |
<a href="#" class="previous-gallery">Previous Image</a> | |
<a href="#" class="next-gallery">Next Image</a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can't figure it out :(
http://jsfiddle.net/ybkmhkna/