You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
3.5 KiB
172 lines
3.5 KiB
11 months ago
|
@use 'sass:math';
|
||
|
|
||
|
@use 'mixins/mixins' as *;
|
||
|
@use 'mixins/var' as *;
|
||
|
@use 'common/var' as *;
|
||
|
|
||
|
@include b(carousel) {
|
||
|
@include set-component-css-var('carousel', $carousel);
|
||
|
|
||
|
position: relative;
|
||
|
|
||
|
@include m(horizontal) {
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
@include m(vertical) {
|
||
|
overflow-y: hidden;
|
||
|
}
|
||
|
|
||
|
@include e(container) {
|
||
|
position: relative;
|
||
|
height: 300px;
|
||
|
}
|
||
|
|
||
|
@include e(arrow) {
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
height: var(--el-carousel-arrow-size);
|
||
|
width: var(--el-carousel-arrow-size);
|
||
|
cursor: pointer;
|
||
|
transition: var(--el-transition-duration);
|
||
|
border-radius: 50%;
|
||
|
background-color: var(--el-carousel-arrow-background);
|
||
|
color: $color-white;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
z-index: 10;
|
||
|
transform: translateY(-50%);
|
||
|
text-align: center;
|
||
|
font-size: var(--el-carousel-arrow-font-size);
|
||
|
|
||
|
@include m(left) {
|
||
|
left: 16px;
|
||
|
}
|
||
|
|
||
|
@include m(right) {
|
||
|
right: 16px;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: var(--el-carousel-arrow-hover-background);
|
||
|
}
|
||
|
|
||
|
& i {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(indicators) {
|
||
|
position: absolute;
|
||
|
list-style: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
z-index: calc(var(--el-index-normal) + 1);
|
||
|
|
||
|
@include m(horizontal) {
|
||
|
bottom: 0;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%);
|
||
|
}
|
||
|
|
||
|
@include m(vertical) {
|
||
|
right: 0;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
|
||
|
@include m(outside) {
|
||
|
bottom: calc(
|
||
|
var(--el-carousel-indicator-height) +
|
||
|
var(--el-carousel-indicator-padding-vertical) * 2
|
||
|
);
|
||
|
text-align: center;
|
||
|
position: static;
|
||
|
transform: none;
|
||
|
.#{$namespace}-carousel__indicator:hover button {
|
||
|
opacity: 0.64;
|
||
|
}
|
||
|
button {
|
||
|
background-color: var(--el-carousel-indicator-out-color);
|
||
|
opacity: 0.24;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include m(labels) {
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
transform: none;
|
||
|
text-align: center;
|
||
|
|
||
|
.#{$namespace}-carousel__button {
|
||
|
height: auto;
|
||
|
width: auto;
|
||
|
padding: 2px 18px;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
|
||
|
.#{$namespace}-carousel__indicator {
|
||
|
padding: 6px 4px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(indicator) {
|
||
|
background-color: transparent;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover button {
|
||
|
opacity: 0.72;
|
||
|
}
|
||
|
|
||
|
@include m(horizontal) {
|
||
|
display: inline-block;
|
||
|
padding: var(--el-carousel-indicator-padding-vertical)
|
||
|
var(--el-carousel-indicator-padding-horizontal);
|
||
|
}
|
||
|
|
||
|
@include m(vertical) {
|
||
|
padding: var(--el-carousel-indicator-padding-horizontal)
|
||
|
var(--el-carousel-indicator-padding-vertical);
|
||
|
.#{$namespace}-carousel__button {
|
||
|
width: var(--el-carousel-indicator-height);
|
||
|
height: calc(var(--el-carousel-indicator-width) / 2);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include when(active) {
|
||
|
button {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include e(button) {
|
||
|
display: block;
|
||
|
opacity: 0.48;
|
||
|
width: var(--el-carousel-indicator-width);
|
||
|
height: var(--el-carousel-indicator-height);
|
||
|
background-color: $color-white;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
cursor: pointer;
|
||
|
transition: var(--el-transition-duration);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.carousel-arrow-left-enter-from,
|
||
|
.carousel-arrow-left-leave-active {
|
||
|
transform: translateY(-50%) translateX(-10px);
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.carousel-arrow-right-enter-from,
|
||
|
.carousel-arrow-right-leave-active {
|
||
|
transform: translateY(-50%) translateX(10px);
|
||
|
opacity: 0;
|
||
|
}
|