zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
@use 'mixins/mixins' as *;
@use 'common/var' as *;
 
@include b(carousel) {
  @include e(item) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    z-index: calc(getCssVar('index', 'normal') - 1);
 
    @include when(active) {
      z-index: calc(getCssVar('index', 'normal') - 1);
    }
 
    @include when(animating) {
      transition: transform 0.4s ease-in-out;
    }
 
    @include m(card) {
      width: 50%;
      transition: transform 0.4s ease-in-out;
 
      &.is-in-stage {
        cursor: pointer;
        z-index: getCssVar('index', 'normal');
 
        &:hover .#{$namespace}-carousel__mask,
        &.is-hover .#{$namespace}-carousel__mask {
          opacity: 0.12;
        }
      }
 
      &.is-active {
        z-index: calc(getCssVar('index', 'normal') + 1);
      }
    }
 
    @include m(card-vertical) {
      width: 100%;
      height: 50%;
    }
  }
 
  @include e(mask) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: getCssVar('color', 'white');
    opacity: 0.24;
    transition: getCssVar('transition-duration', 'fast');
  }
}