视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001
微信小程序自定义toast组件的方法详解【含动画】
2020-11-27 21:57:15 责编:小采
文档

本文实例讲述了微信小程序自定义toast组件的方法。分享给大家供大家参考,具体如下:

怎么创建就不说了,前面一篇有
微信小程序自定义prompt组件
直接上代码

wxml

<!-- components/toast/toast.wxml -->
<view class="toast-box {{isShow? 'show':''}}" animation="{{animationData}}">
 <view class="toast-content" >
 <view class="toast-img">
 <block wx:if="{{type==='success'}}">
 <image class="toast-icon" src="xxx" />
 </block>
 <block wx:if="{{type==='fail'}}">
 <image class="toast-icon" src="xxx" />
 </block>
 </view>
 <view class="toast-title">{{title}}</view>
 </view>
</view>

js

// components/toast/toast.js
Component({
 properties: {
 },
 data: {
 type: 'fail',
 title: '你还没有勾选呢!',
 isShow: false,
 animationData: ''
 },
 methods: {
 showToast: function (data) {
 const self = this;
 if (this._showTimer) {
 clearTimeout(this._showTimer)
 }
 if (this._animationTimer) {
 clearTimeout(this._animationTimer)
 }
 // display需要先设置为block之后,才能执行动画
 this.setData({
 title: data.title,
 type: data.type,
 isShow: true,
 });
 this._animationTimer = setTimeout(() => {
 const animation = wx.createAnimation({
 duration: 500,
 timingFunction: 'ease',
 delay: 0
 })
 animation.opacity(1).step();
 self.setData({
 animationData: animation.export(),
 })
 }, 50)
 this._showTimer = setTimeout(function () {
 self.hideToast();
 if (data.compelete && (typeof data.compelete === 'function')) {
 data.compelete()
 }
 }, 1200 || (50 + data.duration))
 },
 hideToast: function () {
 if (this._hideTimer) {
 clearTimeout(this._hideTimer)
 }
 let animation = wx.createAnimation({
 duration: 200,
 timingFunction: 'ease',
 delay: 0
 })
 animation.opacity(0).step();
 this.setData({
 animationData: animation.export(),
 })
 this._hideTimer = setTimeout(() => {
 this.setData({
 isShow: false,
 })
 }, 250)
 }
 }
})

json

{
 "component": true,
 "usingComponents": {}
}

wxss

/* components/toast/toast.wxss */
.toast-box {
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 z-index: 11;
 display: none;
 opacity: 0;
}
.show{
 display: block;
}
.toast-content {
 position: absolute;
 left: 50%;
 top: 35%;
 width: 350rpx;
 /*height: 250rpx;*/
 border-radius: 10rpx;
 box-sizing: bordre-box;
 transform: translate(-50%, -50%);
 background: rgba(0, 0, 0, .7);
}
.toast-img{
 width: 100%;
 height: 120rpx;
 padding-top: 15rpx;
 box-sizing: bordre-box;
 text-align: center;
}
.toast-icon{
 width: 100rpx;
 height: 100rpx;
}
.toast-title {
 width: 100%;
 padding:10rpx;
 line-height: 65rpx;
 color: white;
 text-align: center;
 font-size: 40rpx;
 box-sizing: border-box;
}

使用

例如,在index.html中使用

在json中添加useComponents属性

"usingComponents": {
 "vas-prompt": "./components/toast/toast"
}

wxml

<vas-toast id='toast'></vas-toast>
<button bindtap="showToast">点击弹出toast</button>

js

//在onReady生命周期函数中,先获取prompt实例
onReady:function(){
 this.prompt = this.selectComponent("#toast");
},
showToast:function(){
 this.toast.showToast({
 type: 'success',
 title: '测试弹出消息',
 duration: 1000,
 compelete: function () {
 console.log('toast框隐藏之后,会调用该函数')
 //例如:跳转页面wx.navigateTo({ url: 'xxx' });
 }
 })
},

效果

希望本文所述对大家微信小程序开发有所帮助。

下载本文
显示全文
专题