mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-13 06:20:07 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
50 lines
974 B
SCSS
50 lines
974 B
SCSS
@import "mixins/mixins";
|
|
@import "common/var";
|
|
|
|
@include b(carousel) {
|
|
@include e(item) {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
z-index: #{$--index-normal - 1};
|
|
|
|
@include when(active) {
|
|
z-index: #{$--index-normal + 1};
|
|
}
|
|
|
|
@include when(animating) {
|
|
transition: transform .4s ease-in-out;
|
|
}
|
|
|
|
@include m(card) {
|
|
width: 50%;
|
|
transition: transform .4s ease-in-out;
|
|
&.is-in-stage {
|
|
cursor: pointer;
|
|
z-index: $--index-normal;
|
|
&:hover .el-carousel__mask,
|
|
&.is-hover .el-carousel__mask {
|
|
opacity: 0.12;
|
|
}
|
|
}
|
|
&.is-active {
|
|
z-index: #{$--index-normal + 1};
|
|
}
|
|
}
|
|
}
|
|
|
|
@include e(mask) {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: $--color-white;
|
|
opacity: 0.24;
|
|
transition: .2s;
|
|
}
|
|
} |