twbs--bootstrap/scss/_carousel.scss

223 lines
5.0 KiB
SCSS
Raw Normal View History

// Notes on the classes:
//
// 1. The .carousel-item-left and .carousel-item-right is used to indicate where
// the active slide is heading.
// 2. .active.carousel-item is the current slide.
// 3. .active.carousel-item-left and .active.carousel-item-right is the current
// slide in its in-transition state. Only one of these occurs at a time.
// 4. .carousel-item-next.carousel-item-left and .carousel-item-prev.carousel-item-right
// is the upcoming slide in transition.
.carousel {
position: relative;
}
.carousel-inner {
2012-09-26 18:20:27 +00:00
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-item {
position: relative;
display: none;
2017-01-20 21:31:42 +00:00
align-items: center;
2017-04-08 23:11:59 +00:00
width: 100%;
backface-visibility: hidden;
perspective: 1000px;
}
2016-11-26 07:43:12 +00:00
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
@include transition($carousel-transition);
2016-11-26 07:43:12 +00:00
}
.carousel-item-next,
.carousel-item-prev {
2016-11-26 07:43:12 +00:00
position: absolute;
top: 0;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
transform: translateX(0);
@supports (transform-style: preserve-3d) {
transform: translate3d(0, 0, 0);
}
}
.carousel-item-next,
.active.carousel-item-right {
transform: translateX(100%);
@supports (transform-style: preserve-3d) {
transform: translate3d(100%, 0, 0);
}
}
.carousel-item-prev,
.active.carousel-item-left {
transform: translateX(-100%);
@supports (transform-style: preserve-3d) {
transform: translate3d(-100%, 0, 0);
}
}
2015-04-18 18:17:28 +00:00
//
// Alternate transitions
//
.carousel-fade {
.carousel-item {
opacity: 0;
transition-duration: .6s;
transition-property: opacity;
}
.carousel-item.active,
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
opacity: 1;
}
.active.carousel-item-left,
.active.carousel-item-right {
opacity: 0;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active,
.active.carousel-item-left,
.active.carousel-item-prev {
transform: translateX(0);
@supports (transform-style: preserve-3d) {
transform: translate3d(0, 0, 0);
}
}
}
2015-04-18 18:17:28 +00:00
//
// Left/right controls for nav
2015-04-18 18:17:28 +00:00
//
2016-12-05 07:19:54 +00:00
.carousel-control-prev,
.carousel-control-next {
position: absolute;
2012-09-26 18:20:27 +00:00
top: 0;
bottom: 0;
// Use flex for alignment (1-3)
display: flex; // 1. allow flex styles
2016-12-22 22:47:28 +00:00
align-items: center; // 2. vertically center contents
justify-content: center; // 3. horizontally center contents
2014-12-02 22:02:35 +00:00
width: $carousel-control-width;
color: $carousel-control-color;
text-align: center;
opacity: $carousel-control-opacity;
// We can't have a transition here because WebKit cancels the carousel
2013-07-02 00:32:07 +00:00
// animation if you trip this while in the middle of another animation.
// Hover/focus state
@include hover-focus {
2014-12-02 22:02:35 +00:00
color: $carousel-control-color;
text-decoration: none;
outline: 0;
opacity: .9;
}
2016-12-05 05:39:46 +00:00
}
.carousel-control-prev {
left: 0;
@if $enable-gradients {
background: linear-gradient(90deg, rgba($black, .25), rgba($black, .001));
}
}
.carousel-control-next {
right: 0;
@if $enable-gradients {
background: linear-gradient(270deg, rgba($black, .25), rgba($black, .001));
}
}
2012-10-01 06:44:23 +00:00
// Icons for within
.carousel-control-prev-icon,
.carousel-control-next-icon {
2016-12-05 05:39:46 +00:00
display: inline-block;
2016-12-05 06:01:31 +00:00
width: $carousel-control-icon-width;
height: $carousel-control-icon-width;
background: transparent no-repeat center center;
background-size: 100% 100%;
2016-12-05 05:39:46 +00:00
}
.carousel-control-prev-icon {
background-image: $carousel-control-prev-icon-bg;
2016-12-05 05:39:46 +00:00
}
.carousel-control-next-icon {
background-image: $carousel-control-next-icon-bg;
}
2012-10-01 06:44:23 +00:00
2015-04-18 18:17:28 +00:00
// Optional indicator pips
//
2017-01-01 20:00:17 +00:00
// Add an ordered list with the following class and add a list item for each
// slide your carousel holds.
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
2013-05-17 01:29:53 +00:00
z-index: 15;
display: flex;
justify-content: center;
2017-01-01 20:00:17 +00:00
padding-left: 0; // override <ol> default
// Use the .carousel-control's width as margin so we don't overlay those
margin-right: $carousel-control-width;
margin-left: $carousel-control-width;
list-style: none;
li {
box-sizing: content-box;
flex: 0 1 auto;
width: $carousel-indicator-width;
2016-12-05 04:14:33 +00:00
height: $carousel-indicator-height;
margin-right: $carousel-indicator-spacer;
margin-left: $carousel-indicator-spacer;
text-indent: -999px;
cursor: pointer;
background-color: $carousel-indicator-active-bg;
background-clip: padding-box;
// Use transparent borders to increase the hit area by 10px on top and bottom.
border-top: $carousel-indicator-hit-area-height solid transparent;
border-bottom: $carousel-indicator-hit-area-height solid transparent;
opacity: .5;
@include transition($carousel-indicator-transition);
}
.active {
opacity: 1;
}
}
2015-04-18 18:17:28 +00:00
// Optional captions
2015-04-18 18:17:28 +00:00
//
2017-01-01 20:00:17 +00:00
//
2015-04-18 18:17:28 +00:00
.carousel-caption {
position: absolute;
right: ((100% - $carousel-caption-width) / 2);
bottom: 20px;
left: ((100% - $carousel-caption-width) / 2);
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
2014-12-02 22:02:35 +00:00
color: $carousel-caption-color;
text-align: center;
}