西安网络公司分享DIV+JS+CSS实现点击弹出图片效果

2020-05-10 23:50:22   628

<style type="text/css">
      .black_overlay {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #00C0A5;
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=50);
}

.white_content {
    border-radius: 20px;
    display: none;
    position: absolute;
    top: 30%;
    left: 40%;
    background-color: #FFFFFF;
    z-index: 1002;
    overflow: auto;
}  
</style>