当前位置:Gxlcms > JavaScript > 微信小程序使用component自定义toast弹窗效果

微信小程序使用component自定义toast弹窗效果

时间:2021-07-01 10:21:17 帮助过:46人阅读

前言

微信小程序自带的消息提示框有字数限制,而且图标仅仅只有"success","loading","none"。当我们在实际开发过程中,面对UI给的设计图稿和微信小程序默认提供的消息提示框具有很大差别的时候,自然就不能再使用微信小程序的消息提示框,而应当使用component自定义消息提示框组件。

效果图

Step1:初始化组件

新建一个components文件夹,这个文件夹用来存放我们以后要开发的所有自定义组件。

然后在components文件夹中创建Toast文件夹,在Toast上右击新建Component 之后就会自动创建相对应的wxml、wxss、js、json文件。

Step2:组件的相关配置

将toast.json 中component 设置为true

toast.json:

  1. {
  2. "component": true, // 自定义组件声明
  3. "usingComponents": {} // 可选项,用于引用别的组件
  4. }

然后在toast.wxml文件里写弹窗组件的模板,在toast.wxss文件里写组件的样式

toast.wxml:

  1. <!--components/Toast/toast.wxml-->
  2. <view class='mask' hidden="{{isShow}}">
  3. <image class="image" src='../../images/{{icon}}.png' mode='aspectFit'></image>
  4. <view class='info'>{{information}}</view>
  5. </view>

toast.wxss:

  1. /* components/Toast/toast.wxss */
  2. .mask{
  3. width: 400rpx;
  4. height: 300rpx;
  5. border-radius:10rpx;
  6. position: fixed;
  7. z-index: 1000;
  8. top: 300rpx;
  9. left: 175rpx;
  10. background: rgba(0, 0, 0, 0.6);
  11. }
  12. .image{
  13. z-index: 1000;
  14. width: 120rpx;
  15. height: 120rpx;
  16. margin-left: 140rpx;
  17. }
  18. .info{
  19. margin-top:50rpx;
  20. z-index: 1000;
  21. text-align: center;
  22. color: #ffffff;
  23. }
  24. width: 400rpx;
  25. height: 300rpx;
  26. border-radius:10rpx;
  27. position: fixed;
  28. z-index: 1000;
  29. top: 300rpx;
  30. left: 175rpx;
  31. background: rgba(0, 0, 0, 0.6);
  32. }
  33. .image{
  34. z-index: 1000;
  35. width: 120rpx;
  36. height: 120rpx;
  37. margin-left:80rpx;
  38. }
  39. .info{
  40. margin-top:50rpx;
  41. z-index: 1000;
  42. text-align: center;
  43. color: #ffffff;
  44. }

Step3:定义属性、数据和事件

可以看到在toast.wxml文件中出现了{{isShow}}、{{icon}}、{{information}} 变量,这是为了组件模板能够根据传入的属性动态变化。

toast.js :

  1. // components/Toast/toast.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: { //定义组件属性
  7. information:{ //用来显示提示信息
  8. type: String, // 类型(必填),目前接受的类型包括:String, Number, Boolean, Object, Array, null(表示任意类型)
  9. value: '提示信息' // 属性初始值(可选),如果未指定则会根据类型选择一个
  10. },
  11. icon:{ //图标类型,我在images文件夹中存放了success和fail的两个图标
  12. type:String,
  13. value:'success'
  14. },
  15. showTime:{ //弹窗开始显示的时间单位ms
  16. type: Number,
  17. value:1000
  18. },
  19. hideTime: { //弹窗开始隐藏的时间单位ms
  20. type: Number,
  21. value: 1000
  22. }
  23. },
  24. /**
  25. * 组件的初始数据
  26. */
  27. data: {
  28. isShow:true
  29. },
  30. /**
  31. * 组件的方法列表
  32. */
  33. methods:{
  34. showToast:function () {
  35. let that = this;
  36. setTimeout(function () {
  37. that.setData({
  38. isShow: !that.data.isShow
  39. });
  40. }, that.data.showTime);
  41. },
  42. hideToast: function (e) {
  43. let that = this;
  44. setTimeout(function(){
  45. that.setData({
  46. isShow: !that.data.isShow
  47. });
  48. },that.data.hideTime);
  49. }
  50. }
  51. })

Step4:使用弹窗/strong>

目前已经完成了toast组件模板,接下来就是在需要显示这个弹窗的页面中使用它。

index.json:引入组件

  1. {
  2. "usingComponents": {
  3. "toast": "/components/Toast/toast"
  4. }
  5. }

index.wxml:

  1. <!--page/index/index.wxml-->
  2. <view class="container">
  3. <toast id='toast'information="提交成功,我们会尽快和您联系" icon="success" showTime="1000" hideTime='2000'></toast>
  4. <button type="primary" bindtap="show"> 显示弹窗 </button>
  5. </view>

index.js:

  1. // page/index/index.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. },
  8. show:function(){
  9. this.toast.showToast();
  10. this.toast.hideToast();
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad: function (options) {
  16. },
  17. /**
  18. * 生命周期函数--监听页面初次渲染完成
  19. */
  20. onReady: function () {
  21. this.toast = this.selectComponent("#toast");
  22. },
  23. /**
  24. * 生命周期函数--监听页面显示
  25. */
  26. onShow: function () {
  27. },
  28. /**
  29. * 生命周期函数--监听页面隐藏
  30. */
  31. onHide: function () {
  32. },
  33. /**
  34. * 生命周期函数--监听页面卸载
  35. */
  36. onUnload: function () {
  37. },
  38. /**
  39. * 页面相关事件处理函数--监听用户下拉动作
  40. */
  41. onPullDownRefresh: function () {
  42. },
  43. /**
  44. * 页面上拉触底事件的处理函数
  45. */
  46. onReachBottom: function () {
  47. },
  48. /**
  49. * 用户点击右上角分享
  50. */
  51. onShareAppMessage: function () {
  52. }
  53. })

至此我们就完成了自定义toast组件的步骤。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

人气教程排行