微信小程序 Toast自定义实例详解

微信小程序 Toast自定义实例详解

实现类似于Android的Toast提示

index.js:

},showModal: function () {
// 显示遮罩层
var animation = wx.createAnimation({
duration: 200,timingFunction: "linear",delay: 0
})
this.animation = animation
animation.translateY(200).step()
this.setData({
animationData: animation.export(),showModalStatus: true
})
setTimeout(function () {
animation.translateY(0).step()
this.setData({
animationData: animation.export()
})
}.bind(this),200)
console.log("准备执行");
timer = setTimeout(function () {
if(this.data.showModalStatus){
this.hideModal();
console.log("是否执行");
}
}.bind(this),3000)
},clickbtn:function(){
if(this.data.showModalStatus){
this.hideModal();
}else{
this.showModal();
}
},hideModal: function () {
if(timer != null){
clearTimeout(timer);
timer = null;
}
// 隐藏遮罩层
var animation = wx.createAnimation({
duration: 200,})
setTimeout(function () {
animation.translateY(0).step()
this.setData({
animationData: animation.export(),showModalStatus: false
})
}.bind(this),200)
},})

Box" wx:if="{{showModalStatus}}"> 显示的内容

效果图:

链接:

支持

相关文章

1. 获取输入框数据wxml中的input上增加bindinput属性,和方法值在js部分定义与之对应的方法,只要在输入...
1.map组件的高度如果想要铺满屏幕,要是使用height:100vh样式2.获取位置要在app.json中标明权限3.先使用...
QQ小程序支付 Java后端 同学折腾QQ小程序的支付折腾了好几天,没有完成统一下单,因为我做过微信和支付...
前言: 在实际项目开发中我们经常会遇到账号统一的问题,如何在不同端或者是不同的登录方式下保证同一个...
一、前言: 我发现很多的同学都在抱怨说微信小程序的picker的mode = selector/mode = multiSelector 无...
前言: 之前自己做一个uni-app的项目的时候前端需要实现一个比较复杂的动态tab和swiper切换的功能,但是...