移动端弹窗垂直居中的几种方法

遮罩层:

    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100;

1、显示层:

    width: 100%;
    height: 500px;
    background: url(box_bg.png) no-repeat;
    background-size: cover;
    position: fixed;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 200;

效果图:
移动端弹窗垂直居中的几种方法_第1张图片

你可能感兴趣的:(移动端)