0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/_carousel.scss

179 lines
3.7 KiB
SCSS
Raw Normal View History

// Wrapper for the slide container and indicators
.carousel {
position: relative;
}
.carousel-inner {
2012-09-26 20:20:27 +02:00
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-item {
position: relative;
display: none;
width: 100%;
@include if-supports-3d-transforms() {
2016-12-05 06:05:19 +01:00
@include transition(transform .6s ease-in-out);
backface-visibility: hidden;
perspective: 1000px;
}
}
2016-11-26 08:43:12 +01:00
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
.carousel-item-next,
.carousel-item-prev {
2016-11-26 08:43:12 +01:00
position: absolute;
top: 0;
}
// CSS3 transforms when supported by the browser
@include if-supports-3d-transforms() {
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
transform: translate3d(0, 0, 0);
}
.carousel-item-next,
.active.carousel-item-right {
transform: translate3d(100%, 0, 0);
}
.carousel-item-prev,
.active.carousel-item-left {
transform: translate3d(-100%, 0, 0);
}
}
2015-04-18 20:17:28 +02:00
//
// Left/right controls for nav
2015-04-18 20:17:28 +02:00
//
.carousel-control {
position: absolute;
2012-09-26 20:20:27 +02:00
top: 0;
bottom: 0;
2014-12-02 23:02:35 +01: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 02:32:07 +02:00
// animation if you trip this while in the middle of another animation.
// Hover/focus state
@include hover-focus {
2014-12-02 23:02:35 +01:00
color: $carousel-control-color;
text-decoration: none;
outline: 0;
opacity: .9;
}
2016-12-05 06:39:46 +01:00
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
2012-10-01 08:44:23 +02:00
// Icons for within
.carousel-control-prev-icon,
.carousel-control-next-icon {
2016-12-05 06:39:46 +01:00
position: absolute;
top: 50%;
z-index: 5;
display: inline-block;
2016-12-05 07:01:31 +01:00
width: $carousel-control-icon-width;
height: $carousel-control-icon-width;
margin-top: -($carousel-control-icon-width / 2);
2016-12-05 06:39:46 +01:00
font-family: serif;
line-height: 1;
background: transparent no-repeat center center;
background-size: 100% 100%;
2016-12-05 06:39:46 +01:00
}
.carousel-control-prev-icon {
2016-12-05 06:39:46 +01:00
left: 50%;
2016-12-05 07:01:31 +01:00
margin-left: -($carousel-control-icon-width / 2);
background-image: $carousel-control-prev-icon-bg;
2016-12-05 06:39:46 +01:00
}
.carousel-control-next-icon {
2016-12-05 06:39:46 +01:00
right: 50%;
2016-12-05 07:01:31 +01:00
margin-right: -($carousel-control-icon-width / 2);
background-image: $carousel-control-next-icon-bg;
}
2012-10-01 08:44:23 +02:00
2015-04-18 20:17:28 +02:00
// Optional indicator pips
//
// Add an unordered list with the following class and add a list item for each
// slide your carousel holds.
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
2013-05-17 03:29:53 +02:00
z-index: 15;
width: $carousel-indicators-width;
padding-left: 0;
margin-left: -($carousel-indicators-width / 2);
text-align: center;
list-style: none;
li {
2016-12-05 05:14:33 +01:00
position: relative;
display: inline-block;
2016-12-05 05:14:33 +01:00
width: $carousel-indicator-width;
height: $carousel-indicator-height;
text-indent: -999px;
cursor: pointer;
2016-12-05 05:14:33 +01:00
background-color: rgba($carousel-indicator-active-bg, .5);
2016-12-05 06:39:54 +01:00
// Use pseudo classes to increase the hit area by 10px on top and bottom.
2016-12-05 05:14:33 +01:00
&::before {
position: absolute;
top: -10px;
left: 0;
display: inline-block;
width: 100%;
height: 10px;
2016-12-05 05:27:33 +01:00
content: "";
2016-12-05 05:14:33 +01:00
}
&::after {
position: absolute;
bottom: -10px;
left: 0;
display: inline-block;
width: 100%;
height: 10px;
2016-12-05 05:27:33 +01:00
content: "";
2016-12-05 05:14:33 +01:00
}
}
.active {
2014-12-02 23:02:35 +01:00
background-color: $carousel-indicator-active-bg;
}
}
2015-04-18 20:17:28 +02:00
// Optional captions
2015-04-18 20:17:28 +02:00
//
// Hidden by default for smaller viewports.
.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 23:02:35 +01:00
color: $carousel-caption-color;
text-align: center;
}