微信小程序点击按钮实现弹出模态框

效果图

微信小程序点击按钮实现弹出模态框_第1张图片

微信小程序点击按钮实现弹出模态框_第2张图片

wxml






  

wcss

.modal-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

.modal-dialog {
  overflow: hidden;
  position: fixed;
  top: 30%;
  background: #f9f9f9;
  margin: -110rpx 105rpx;
  border-radius: 50%;
}
.view-image{
  width: 600rpx;
  height: 600rpx;
}

 

js

  /**
   * 按钮点击事件
   */
  changeYL: function () {
    this.setData({
      showModal: true
    })
  },
  /**
   * 隐藏模态对话框
   */
  hideModal: function () {
    this.setData({
      showModal: false
    });
  },

 

你可能感兴趣的:(小程序)