<div :class="['game-model', modelShow ? 'show' : '']" @click="closeModel">
<div :class="['game-model-main', 'animated', modelStatus === 1 ? 'bounceInDown' : 'bounceOutUp']">
...//有很多不同类型的弹窗
</div>
<div :class="['game-model-main', 'animated', modelStatus === 2 ? 'bounceInDown' : 'bounceOutUp']">
...//有很多不同类型的弹窗
</div>
<div :class="['game-model-main', 'animated', modelStatus === 3 ? 'bounceInDown' : 'bounceOutUp']">
...//有很多不同类型的弹窗
</div>
</div>
.game-model{
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,.8);
opacity: 0;
transition: 0.75s;
z-index: -1;
&.show{
opacity: 1;
z-index: 9;
}
.game-model-main{
position: absolute;
width: 575px;
background-color: #fff;
padding: 24px;
box-sizing: border-box;
top: 50%;
left: 8rpx;
// transform: translate3d(0, -100%, 0);
z-index: 10;
}
}
一个弹窗组件,.game-model-main使用css3的动画显示,所以设置translate会冲突,无法实现效果。
absolute元素不定高度不使用translate如何垂直居中?
可以参考以下这个:https://segmentfault.com/q/10...
flex布局兼容性:http://caniuse.com/#feat=flexbox
flex布局示例
以下不适用子元素高度不定的情况设置top:0;bottom:0;
然后margin:auto;
。示例
如果动画的CSS可以修改的话给动画加个translate偏移量来修正也是可以的