微信小程序定时弹窗模板
wxml部分:
<view class="myToast" hidden="{{nullHouse}}">时间到啦!</view>
wxss部分:
/* 弹窗 */
.myToast{
width:300rpx;
height:130rpx;
line-height: 130rpx;
margin:80rpx 25%;
border-radius:20rpx;
background-color: rgb(114,113,113);
color:rgb(255,255,255);
font-size: 36rpx;
text-align: center;
position: absolute;
z-index: 100;
opacity: 0.85;
}
js部分:
Page({
data: {
nullHouse: false
},
onLoad: function (options) {
var that = this;
this.setData({
nullHouse: false,
})
setTimeout(function () {
that.setData({nullHouse:true})},3000)//3秒
}
})