Skip to content

Instantly share code, notes, and snippets.

@jprieton
Last active August 29, 2015 14:26
Show Gist options
  • Save jprieton/3693711a8f3c5be1cdef to your computer and use it in GitHub Desktop.
Save jprieton/3693711a8f3c5be1cdef to your computer and use it in GitHub Desktop.
Bootstrap Carousel Fade transition
/* Sorurce: http://codepen.io/Rowno/pen/Afykb */
.carousel-fade {
.carousel-inner {
.item {
transition-property: opacity;
}
.item,
.active.left,
.active.right {
opacity: 0;
}
.active,
.next.left,
.prev.right {
opacity: 1;
}
.next,
.prev,
.active.left,
.active.right {
left: 0;
transform: translate3d(0, 0, 0);
}
}
.carousel-control {
z-index: 2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment