Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Last active December 21, 2015 02:28
Show Gist options
  • Save fdaciuk/6235235 to your computer and use it in GitHub Desktop.
Save fdaciuk/6235235 to your computer and use it in GitHub Desktop.
Carousel Usando jCarousel v3
<div class="carousel-pictures">
<div class="wrap-carousel">
<ul>
<li>
<img src="http://lorempixel.com/600/460/" alt="" />
</li>
<li>
<img src="http://lorempixel.com/600/460/" alt="" />
</li>
<li>
<img src="http://lorempixel.com/600/460/" alt="" />
</li>
<li>
<img src="http://lorempixel.com/600/460/" alt="" />
</li>
<li>
<img src="http://lorempixel.com/600/460/" alt="" />
</li>
</ul>
</div> <!-- .wrap-carousel -->
<a class="nav-carousel nav-prev">Prev</a>
<a class="nav-carousel nav-next">Next</a>
</div> <!-- .carousel-pictures -->
.carousel-pictures
position: relative
.wrap-carousel
height: 460px
overflow: hidden
width: 600px
ul
float: left
margin: 0
padding: 0
position: relative
width: 2000em
li
float: left
list-style: none
img
display: block
.nav-carousel
cursor: pointer
position: absolute
top: 0
.nav-prev
left: 0
.nav-next
right: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment