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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@use 'mixins/mixins' as *;
@use 'common/var' as *;
 
@mixin op-icon() {
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #fff;
  background-color: getCssVar('text-color', 'regular');
  border-color: #fff;
}
 
@include b(image-viewer) {
  @include e(wrapper) {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
 
  @include e(btn) {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.8;
    cursor: pointer;
    box-sizing: border-box;
    user-select: none;
 
    .#{$namespace}-icon {
      font-size: inherit;
      cursor: pointer;
    }
  }
 
  @include e(close) {
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
  }
 
  @include e(canvas) {
    position: static;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
  }
 
  @include e(actions) {
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 282px;
    height: 44px;
    padding: 0 23px;
    background-color: getCssVar('text-color', 'regular');
    border-color: #fff;
    border-radius: 22px;
 
    @include e(actions__inner) {
      width: 100%;
      height: 100%;
      text-align: justify;
      cursor: default;
      font-size: 23px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-around;
    }
  }
 
  @include e(prev) {
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    @include op-icon();
  }
 
  @include e(next) {
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    text-indent: 2px;
    @include op-icon();
  }
 
  @include e(close) {
    @include op-icon();
  }
 
  @include e(mask) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
  }
}
 
.viewer-fade-enter-active {
  animation: viewer-fade-in getCssVar('transition-duration');
}
 
.viewer-fade-leave-active {
  animation: viewer-fade-out getCssVar('transition-duration');
}
 
@keyframes viewer-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
 
@keyframes viewer-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}