mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
207 lines
4.4 KiB
Plaintext
207 lines
4.4 KiB
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-popup {
|
|
position: fixed;
|
|
box-sizing: border-box;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
transition-timing-function: ease;
|
|
animation: ease both;
|
|
-webkit-overflow-scrolling: touch;
|
|
background-color: var(--popup-background-color, @popup-background-color);
|
|
|
|
&--center {
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate3d(-50%, -50%, 0);
|
|
|
|
&.van-popup--round {
|
|
border-radius: var(
|
|
--popup-round-border-radius,
|
|
@popup-round-border-radius
|
|
);
|
|
}
|
|
}
|
|
|
|
&--top {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
|
|
&.van-popup--round {
|
|
border-radius: 0 0
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
);
|
|
}
|
|
}
|
|
|
|
&--right {
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translate3d(0, -50%, 0);
|
|
|
|
&.van-popup--round {
|
|
border-radius: var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
0 0
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
);
|
|
}
|
|
}
|
|
|
|
&--bottom {
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
|
|
&.van-popup--round {
|
|
border-radius: var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
0 0;
|
|
}
|
|
}
|
|
|
|
&--left {
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translate3d(0, -50%, 0);
|
|
|
|
&.van-popup--round {
|
|
border-radius: 0
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
var(
|
|
--popup-round-border-radius,
|
|
var(--popup-round-border-radius, @popup-round-border-radius)
|
|
)
|
|
0;
|
|
}
|
|
}
|
|
|
|
&--bottom&--safe {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
&--bottom&--safeTabBar,
|
|
&--top&--safeTabBar {
|
|
bottom: var(--tabbar-height, @tabbar-height);
|
|
}
|
|
|
|
&--safeTop {
|
|
padding-top: constant(safe-area-inset-top);
|
|
padding-top: env(safe-area-inset-top);
|
|
}
|
|
|
|
&__close-icon {
|
|
position: absolute;
|
|
z-index: var(--popup-close-icon-z-index, @popup-close-icon-z-index);
|
|
color: var(--popup-close-icon-color, @popup-close-icon-color);
|
|
font-size: var(--popup-close-icon-size, @popup-close-icon-size);
|
|
|
|
&--top-left {
|
|
top: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
left: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
}
|
|
|
|
&--top-right {
|
|
top: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
right: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
}
|
|
|
|
&--bottom-left {
|
|
bottom: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
left: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
}
|
|
|
|
&--bottom-right {
|
|
right: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
bottom: var(--popup-close-icon-margin, @popup-close-icon-margin);
|
|
}
|
|
|
|
&:active {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
}
|
|
|
|
.van-scale-enter-active,
|
|
.van-scale-leave-active {
|
|
transition-property: opacity, transform;
|
|
}
|
|
|
|
.van-scale-enter,
|
|
.van-scale-leave-to {
|
|
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
|
opacity: 0;
|
|
}
|
|
|
|
.van-fade-enter-active,
|
|
.van-fade-leave-active {
|
|
transition-property: opacity;
|
|
}
|
|
|
|
.van-fade-enter,
|
|
.van-fade-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.van-center-enter-active,
|
|
.van-center-leave-active {
|
|
transition-property: opacity;
|
|
}
|
|
|
|
.van-center-enter,
|
|
.van-center-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.van-bottom-enter-active,
|
|
.van-bottom-leave-active,
|
|
.van-top-enter-active,
|
|
.van-top-leave-active,
|
|
.van-left-enter-active,
|
|
.van-left-leave-active,
|
|
.van-right-enter-active,
|
|
.van-right-leave-active {
|
|
transition-property: transform;
|
|
}
|
|
|
|
.van-bottom-enter,
|
|
.van-bottom-leave-to {
|
|
transform: translate3d(0, 100%, 0);
|
|
}
|
|
|
|
.van-top-enter,
|
|
.van-top-leave-to {
|
|
transform: translate3d(0, -100%, 0);
|
|
}
|
|
|
|
.van-left-enter,
|
|
.van-left-leave-to {
|
|
transform: translate3d(-100%, -50%, 0);
|
|
}
|
|
|
|
.van-right-enter,
|
|
.van-right-leave-to {
|
|
transform: translate3d(100%, -50%, 0);
|
|
}
|