小程序项目记录----弹窗

小程序项目记录----弹窗

1、wxml

<view class="hide{{showView?'':'show'}}">
  <!--遮罩层  -->
  <view class="shade">
    <!--面板内容  -->
    <view class="conts">
      <image class="bgcImg" src="/images/slices/popup-1.png"></image>
      <image class="replyImg" src="/images/slices/popup-2.png"></image>
      <button class="answer" bindtap="close">我知道了</button>
    </view>
  </view>
</view>

2、wxss

/* 弹出窗 */

.shade {
  width: 100%;
  height: 2000rpx;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 9;
  position: absolute;
}

.conts {
  width: 630rpx;
  height: 428rpx;
  border-radius: 20rpx;
  position: fixed;
  top: 370rpx;
  left: 60rpx;
  text-indent: 60rpx;
}

.bgcImg {
  position: fixed;
  top: 70rpx;
  left: 60rpx;
  width: 630rpx;
  height: 764rpx;
}

.replyImg {
  width: 498rpx;
  height: 152rpx;
  position: fixed;
  top: 600rpx;
  left: 125rpx;
}

.answer {
  color: #999;
  font-size: 28rpx;
  font-family: PingFangSC;
  position: fixed;
  top: 730rpx;
  left: 230rpx;
  background: none !important;
}

button::after {
  border: none;
}

/*显示整个conts */

.show {
  display: block;
}

/*隐藏整个conts */

.hide {
  display: none;
}

3、js

data: {
    showView: true, //弹窗
  },
  // 点击来显示与隐藏整个“conts”
  onClickClear: function() {
    let that = this;
    that.setData({
      showView: (!that.data.showView)
    })
  },
  // 点击“conts”,使得这个“conts”关闭  
  close: function() {
    let that = this;
    that.setData({
      showView: (!that.data.showView)
    })
  },

4、弹出效果
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值