标签:blob form color pos list com city sla column
<div class="area-box" :class="showArea?‘show‘:‘‘">
<div class="area-box-sub" :class="showArea?‘show‘:‘‘">
<van-area title="标题" :area-list="areaList" value="110101" @confirm="confirm" @cancel="cancle" />
</div>
</div>
.area-box {
position: fixed;
display: flex;
flex-direction: column;
justify-content: flex-end;
top: 0;
height: 100vh;
/* height: 100vh; */
overflow: hidden;
width: 100%;
z-index: 1;
background-color: rgba(0, 0, 0, 0.5);
transition: opacity 0.2s ease-in;
visibility: hidden;
opacity: 0;
/* ops */
}
.area-box.show {
visibility: visible;
opacity: 1;
}
.area-box-sub {
transform: translate(0, 100%);
transition: transform 0.2s ease-in;
}
.area-box-sub.show {
transform: translate(0, 0);
}
标签:blob form color pos list com city sla column
原文地址:https://www.cnblogs.com/shiazhen/p/13177684.html