国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

微信小程序 Toast自定義實例詳解

2019-11-19 17:50:41
字體:
來源:轉載
供稿:網友

微信小程序 Toast自定義實例詳解

實現類似于Android的Toast提示 

index.js:

var timer; var inputinfo = ""; var app = getApp() Page({  data: {   animationData:"",   showModalStatus:false  },    onLoad: function () {     },  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,    timingFunction: "linear",    delay: 0   })   this.animation = animation   animation.translateY(200).step()   this.setData({    animationData: animation.export(),   })   setTimeout(function () {    animation.translateY(0).step()    this.setData({     animationData: animation.export(),     showModalStatus: false    })   }.bind(this), 200)  }, }) 

index.wxml:

<button type="default" bindtap="clickbtn">  點擊 </button> <view class="commodity_screen" bindtap="hideModal" wx:if="{{showModalStatus}}"></view> <view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}"> <!--對話框標題-->  <view class="title-view">   <view class="toast-view">    要顯示的內容   </view>     </view> </view> 

效果圖:

源碼下載鏈接:http://xiazai.VeVB.COm/201701/yuanma/toastTestNew(VeVB.COm).rar

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 尼玛县| 临沭县| 乾安县| 永兴县| 丰都县| 岳西县| 宜川县| 溆浦县| 华宁县| 合作市| 阿拉尔市| 平原县| 微山县| 新乡县| 夏津县| 星子县| 方正县| 和静县| 浠水县| 忻州市| 普格县| 交城县| 名山县| 福贡县| 林甸县| 天祝| 胶南市| 昂仁县| 丹巴县| 义马市| 曲周县| 介休市| 彭水| 金昌市| 尼玛县| 安平县| 乐清市| 越西县| 澄城县| 红安县| 泰来县|