微信小程序开发之toast提示插件使用示例
程序员文章站
2022-04-10 10:50:37
前言
3月28号微信更新了版本,showtoast可以通过image参数修改默认icon了,最大时间也取消了。
以上两个更新实用很多,但icon还是无法去除。显示形式有...
前言
3月28号微信更新了版本,showtoast可以通过image参数修改默认icon了,最大时间也取消了。
以上两个更新实用很多,但icon还是无法去除。显示形式有点单一,无法自定义,可能后续更新会增加更多功能。下面来看看本文的详细内容:
下载文章下面的文件,放在根目录。
然后在app.js中引入js并添加到app中,如下:
var wxtoast = require('toast/toast.js') app({ wxtoast , onlaunch: function () {} })
在app.wxss中添加如下css:
.wxtoast_mask{width:100%;height:100%;position:fixed;left:0px;top:0px;z-index:10000;background:rgba(0,0,0,0);opacity:0;display:none}.wxtoast_show{display:block}.wxtoast_content{max-width:80%;min-width:90px;position:absolute;left:50%;top:20%;transform:translate3d(-50%,0,0);padding:15px;color:#fff;font-size:17px;text-align:center;border-radius:5px;background:rgba(0,0,0,.8)}.wxtoast_img{width:55px;height:55px;display:block;margin:0 auto 8px auto}
接着在页面xxx.wxml中添加如下内容:
<import src="../../toast/toast.wxml"/> <template is="wxtoast" data="{{...wxtoastconfig}}"></template>
最后在页面xxx.js中就可以调用了。
var app = getapp(); //wxtoast挂载在app下面,所以必须先获取app page({ toast: { //调用 app.wxtoast({ title : '加载中' }) }, onload : function( ){} })
更多方法:
app.wxtoast({ title : '验证码错误', //标题,不写默认正在加载 img : '../../images/cc.png', //icon路径,不写不显示 imgclass : 'images', //icon添加class类名 contentclass : 'content', //内容添加class类名 duration : 3000, //延时关闭,默认2000 tapclose : false, //点击关闭,默认false show : function(){ //显示函数 console.log('显示啦') }, hide : function(){ //关闭函数 console.log('消失啦') } });
app.wxtoast(false); //如果需要隐藏,参数设置为false即可。 settimeout(function(){ app.wxtoast(false); },3000)
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。