关于微信小程序中自定义弹出层的代码


  
  
    
        
        这是弹出层
    
  

/*弹出层开始*/
.modal-mask {
  width: 100%;
  height: 10%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
  overflow: hidden;
  z-index: 9000;
  color: #fff;
}

.modal-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  overflow: hidden;
  z-index: 9000;
  color: #fff;
} .modal-content {
  position: fixed;
  top: 28%;
  left: 0;
  z-index: 9500;
  width: 95%;
  overflow: hidden;
  background: #fff;
  margin: 0 2.5%;
  
  
}
/*弹出层结束*/



page({
	data:{
		showModal:true
	}
})

你可能感兴趣的:(原创文章,前端类)