欧洲变态另类zozo,欧美xxxx做受欧美gaybdsm,欧洲熟妇色xxxx欧美老妇软件,免费人成视频xvideos入口 ,欧美.日韩.国产.中文字幕

歡迎光臨本站
我們一直在努力

微信小程序的消息提示框的實(shí)現(xiàn)

本篇文章主要介紹了微信小程序-提示框,現(xiàn)在分享給大家,也給大家做個參考。感興趣的小伙伴們可以參考一下。

做Android的時候?qū)oast是很熟悉的.微信小程序開發(fā)中toast也是重要的消息提示方式.

提示框:

wx.showToast(OBJECT)

顯示消息提示框

OBJECT參數(shù)說明:

示例代碼:

wx.showToast({
 title: '成功',
 icon: 'success',
 duration: 2000
})
登錄后復(fù)制

wx.hideToast()

隱藏消息提示框

wx.showToast({
 title: '加載中',
 icon: 'loading',
 duration: 10000
})

setTimeout(function(){
 wx.hideToast()
},2000)
登錄后復(fù)制

wx.showModal(OBJECT)

顯示模態(tài)彈窗

OBJECT參數(shù)說明:

示例代碼:

wx.showModal({
 title: '提示',
 content: '這是一個模態(tài)彈窗',
 success: function(res) {
  if (res.confirm) {
   console.log('用戶點(diǎn)擊確定')
  }
 }
})
登錄后復(fù)制

wx.showActionSheet(OBJECT)

顯示操作菜單

OBJECT參數(shù)說明:

success返回參數(shù)說明:

示例代碼:

wx.showActionSheet({
 itemList: ['A', 'B', 'C'],
 success: function(res) {
  if (!res.cancel) {
   console.log(res.tapIndex)
  }
 }
})
登錄后復(fù)制

設(shè)置導(dǎo)航條

wx.setNavigationBarTitle(OBJECT)

動態(tài)設(shè)置當(dāng)前頁面的標(biāo)題。

OBJECT參數(shù)說明:

示例代碼:

wx.setNavigationBarTitle({
 title: '當(dāng)前頁面'
})
登錄后復(fù)制

wx.showNavigationBarLoading()

在當(dāng)前頁面顯示導(dǎo)航條加載動畫。

wx.hideNavigationBarLoading()

隱藏導(dǎo)航條加載動畫。

頁面跳轉(zhuǎn):

wx.navigateTo(OBJECT)

保留當(dāng)前頁面,跳轉(zhuǎn)到應(yīng)用內(nèi)的某個頁面,使用wx.navigateBack可以返回到原頁面。

OBJECT參數(shù)說明:

示例代碼:

wx.navigateTo({
 url: 'test?id=1'
})
登錄后復(fù)制
//test.js
Page({
 onLoad: function(option){
  console.log(option.query)
 }
})
登錄后復(fù)制

注意:為了不讓用戶在使用小程序時造成困擾,我們規(guī)定頁面路徑只能是五層,請盡量避免多層級的交互方式。

wx.redirectTo(OBJECT)

關(guān)閉當(dāng)前頁面,跳轉(zhuǎn)到應(yīng)用內(nèi)的某個頁面。

OBJECT參數(shù)說明:

示例代碼:

wx.redirectTo({
 url: 'test?id=1'
})
登錄后復(fù)制

wx.navigateBack(OBJECT)

關(guān)閉當(dāng)前頁面,返回上一頁面或多級頁面??赏ㄟ^ getCurrentPages()) 獲取當(dāng)前的頁面棧,決定需要返回幾層。

OBJECT參數(shù)說明:

動畫:

wx.createAnimation(OBJECT)

創(chuàng)建一個動畫實(shí)例animation。調(diào)用實(shí)例的方法來描述動畫。最后通過動畫實(shí)例的export方法導(dǎo)出動畫數(shù)據(jù)傳遞給組件的animation屬性。

注意: export 方法每次調(diào)用后會清掉之前的動畫操作

OBJECT參數(shù)說明:

var animation = wx.createAnimation({
 transformOrigin: "50% 50%",
 duration: 1000,
 timingFunction: "ease",
 delay: 0
})
登錄后復(fù)制

animation

動畫實(shí)例可以調(diào)用以下方法來描述動畫,調(diào)用結(jié)束后會返回自身,支持鏈?zhǔn)秸{(diào)用的寫法。

樣式:

旋轉(zhuǎn):

縮放:

偏移:

傾斜:

矩陣變形:

動畫隊(duì)列

調(diào)用動畫操作方法后要調(diào)用 step() 來表示一組動畫完成,可以在一組動畫中調(diào)用任意多個動畫方法,一組動畫中的所有動畫會同時開始,一組動畫完成后才會進(jìn)行下一組動畫。step 可以傳入一個跟 wx.createAnimation() 一樣的配置參數(shù)用于指定當(dāng)前組動畫的配置。

示例:

<view animation="{{animationData}}"   style="max-width:90%"></view>
登錄后復(fù)制
Page({
 data: {
  animationData: {}
 },
 onShow: function(){
  var animation = wx.createAnimation({
   duration: 1000,
    timingFunction: 'ease',
  })

  this.animation = animation

  animation.scale(2,2).rotate(45).step()

  this.setData({
   animationData:animation.export()
  })

  setTimeout(function() {
   animation.translate(30).step()
   this.setData({
    animationData:animation.export()
   })
  }.bind(this), 1000)
 },
 rotateAndScale: function () {
  // 旋轉(zhuǎn)同時放大
  this.animation.rotate(45).scale(2, 2).step()
  this.setData({
   animationData: this.animation.export()
  })
 },
 rotateThenScale: function () {
  // 先旋轉(zhuǎn)后放大
  this.animation.rotate(45).step()
  this.animation.scale(2, 2).step()
  this.setData({
   animationData: this.animation.export()
  })
 },
 rotateAndScaleThenTranslate: function () {
  // 先旋轉(zhuǎn)同時放大,然后平移
  this.animation.rotate(45).scale(2, 2).step()
  this.animation.translate(100, 100).step({ duration: 1000 })
  this.setData({
   animationData: this.animation.export()
  })
 }
})
登錄后復(fù)制

wx.hideKeyboard()

收起鍵盤。

wx.stopPullDownRefresh()

停止當(dāng)前頁面下拉刷新。詳見 頁面相關(guān)事件處理函數(shù)。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,更多相關(guān)內(nèi)容請關(guān)注PHP中文網(wǎng)!

相關(guān)推薦:

以上就是微信小程序的消息提示框的實(shí)現(xiàn)的詳細(xì)內(nèi)容,更多請關(guān)注有卡有網(wǎng)。

版權(quán)聲明:本文采用知識共享 署名4.0國際許可協(xié)議 [BY-NC-SA] 進(jìn)行授權(quán)
文章名稱:《微信小程序的消息提示框的實(shí)現(xiàn)》
文章鏈接:http://www.ljxxtl.cn/kaquan-baike/xcx/154542.html
本站資源僅供個人學(xué)習(xí)交流,請于下載后24小時內(nèi)刪除,不允許用于商業(yè)用途,否則法律問題自行承擔(dān)。