美文网首页小程序
小程序 - 3秒倒计时跳转+点击跳转

小程序 - 3秒倒计时跳转+点击跳转

作者: 泛滥的小愤青 | 来源:发表于2020-08-07 17:26 被阅读0次
    3s倒计时.png

    小程序 - 3秒倒计时跳转+点击跳转

    wxml

    <view>
        <view class="register_success">
            <image src="../../images/register_success.png"></image>
        </view>
        <rich-text>{{success_text}}</rich-text>
        <view style="height:182rpx"></view>
        <view class="next_button">
            <button class="next_button" type="{{buttonType}}" disabled="{{disabled}}"  catchtap="closePage">{{time}}s关闭页面</button>
        </view>
    </view>
    

    js

    Page({
        data: {
            success_text : '注册成功!', 
            time:3,
        },
        onReady: function () {
         //3s后跳转
         this.data.Time = setInterval(() => {
          this.setData({
            time: --this.data.time
          })
          if (this.data.time <= 0) {
            clearInterval(this.data.Time)
            this.closePage()
          }
        }, 1000)
      },
    })
    

    wxss

    /* pages/register_success/register_success.wxss */
    
    .register_success {
      width: 186rpx;
      height: 186rpx;
      margin: 0 auto;
      margin-top: 160rpx;
    }
    .register_success image {
      width: 100%;
      height: 100%;
      display: block;
    }
     rich-text {
      text-align: center;
      margin-top: 60rpx;
      font-size: 40urpx;
      color: #505050;
      display: block;
    }
    .next_button {
      background-color: #ed1b24;
      color: #ffffff;
      margin: 0 60rpx;
      border-radius: 50rpx;
      height: 88rpx;
      line-height: 60rpx;
    }
    

    相关文章

      网友评论

        本文标题:小程序 - 3秒倒计时跳转+点击跳转

        本文链接:https://www.haomeiwen.com/subject/jxfqdktx.html