弹出框本身是一个div,默认是隐藏不展示的,在需要弹框的时候使其显示,并浮在当前页面之上 弹框样式: .tanchuang { width: 100%; height: 100%; display: none; position: fixed; top: 0; left: 0; background-color: rgba(0, 0, 0, .5); z-index: 9999; } .tanchuang img { width: 380px; //如果想要让图片与本身的比例自适应放大或者缩小,…