Initial commit of akmon project
This commit is contained in:
36
uni_modules/lime-overlay/components/l-overlay/index.scss
Normal file
36
uni_modules/lime-overlay/components/l-overlay/index.scss
Normal file
@@ -0,0 +1,36 @@
|
||||
@import '~@/uni_modules/lime-style/index.scss';
|
||||
$prefix: l !default;
|
||||
$overlay: #{$prefix}-overlay;
|
||||
|
||||
|
||||
$overlay-bg-color: create-var(overlay-bg-color, rgba(0, 0, 0, 0.6));
|
||||
$overlay-z-index: create-var(overlay-z-index, 998);
|
||||
$overlay-transition-duration: create-var(overlay-transition-duration, 300ms);
|
||||
/* #ifndef APP-ANDROID || APP-IOS || APP-NVUE || APP-HARMONY */
|
||||
$overlay-blur: blur(create-var(overlay-blur, 4px));
|
||||
/* #endif */
|
||||
|
||||
.#{$overlay}{
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
background-color: $overlay-bg-color;
|
||||
transition-duration: $overlay-transition-duration;
|
||||
transition-property: opacity;
|
||||
transition-timing-function: ease;
|
||||
z-index: $overlay-z-index;
|
||||
opacity: 1; // uniapp x ios 必须要设置
|
||||
/* #ifndef APP-ANDROID || APP-IOS || APP-NVUE || APP-HARMONY */
|
||||
backdrop-filter: $overlay-blur;
|
||||
/* #endif */
|
||||
}
|
||||
|
||||
.l-fade-enter {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.l-fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user