中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序實戰之自定義toast(6)

發布時間:2020-08-22 10:00:04 來源:腳本之家 閱讀:184 作者:michael_ouyang 欄目:web開發

微信提供了一個toast的api  wx.showToast()
相關連接:https://mp.weixin.qq.com/debug/wxadoc/dev/api/api-react.html#wxshowtoastobject 

本來是比較好的,方便使用,但是這個toast會顯示出圖標,而且不能去除。
假設:我們執行完業務的時候,toast一下,當執行成功的時候,效果還可以接受,如下圖:

 微信小程序實戰之自定義toast(6)

但是,當執行失敗的時候,如下圖:

失敗了,你還顯示個扣扣圖案,那到底是成功還是失敗??這肯定是不能接受的。

若是給老板看到這種效果,又是一頓臭罵,程序猿的委屈

微信小程序實戰之自定義toast(6)

下面介紹一個自定義的toast

效果:

微信小程序實戰之自定義toast(6) 

具體實現:
wxml:

<!--按鈕--> 
<view > 
 <view class="btn" bindtap="clickBtn">button</view> 
</view> 
 
<!--mask--> 
<view class="toast_mask" wx:if="{{isShowToast}}"></view> 
<!--以下為toast顯示的內容--> 
<view class="toast_content_box" wx:if="{{isShowToast}}"> 
 <view class="toast_content"> 
 <view class="toast_content_text"> 
  {{toastText}} 
 </view> 
 </view> 
</view> 

wxss:

Page { 
 background: #fff; 
} 
/*按鈕*/ 
.btn { 
 font-size: 28rpx; 
 padding: 15rpx 30rpx; 
 width: 100rpx; 
 margin: 20rpx; 
 text-align: center; 
 border-radius: 10rpx; 
 border: 1px solid #000; 
} 
/*mask*/ 
.toast_mask { 
 opacity: 0; 
 width: 100%; 
 height: 100%; 
 overflow: hidden; 
 position: fixed; 
 top: 0; 
 left: 0; 
 z-index: 888; 
} 
/*toast*/ 
.toast_content_box { 
 display: flex; 
 width: 100%; 
 height: 100%; 
 justify-content: center; 
 align-items: center; 
 position: fixed; 
 z-index: 999; 
} 
.toast_content { 
 width: 50%; 
 padding: 20rpx; 
 background: rgba(0, 0, 0, 0.5); 
 border-radius: 20rpx; 
} 
.toast_content_text { 
 height: 100%; 
 width: 100%; 
 color: #fff; 
 font-size: 28rpx; 
 text-align: center; 
} 

js:

Page({ 
 data: { 
 //toast默認不顯示 
 isShowToast: false 
 }, 
 showToast: function () { 
 var _this = this; 
 // toast時間 
 _this.data.count = parseInt(_this.data.count) ? parseInt(_this.data.count) : 3000; 
 // 顯示toast 
 _this.setData({ 
  isShowToast: true, 
 }); 
 // 定時器關閉 
 setTimeout(function () { 
  _this.setData({ 
  isShowToast: false 
  }); 
 }, _this.data.count); 
 }, 
 /* 點擊按鈕 */ 
 clickBtn: function () { 
 console.log("你點擊了按鈕") 
 //設置toast時間,toast內容 
 this.setData({ 
  count: 1500, 
  toastText: 'Michael's Toast' 
 }); 
 this.showToast(); 
 } 
}) 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

侯马市| 工布江达县| 乌鲁木齐市| 布尔津县| 大港区| 景东| 瑞昌市| 图木舒克市| 威信县| 庄河市| 团风县| 鄂尔多斯市| 保山市| 民丰县| 万全县| 安图县| 成武县| 封丘县| 柳州市| 阆中市| 金沙县| 巫山县| 淮滨县| 舞阳县| 苏州市| 白城市| 浦县| 安徽省| 九台市| 秦安县| 囊谦县| 汕尾市| 饶河县| 永登县| 双牌县| 历史| 聊城市| 柯坪县| 沁水县| 德格县| 洛浦县|