微信小程序 ---设备及交互API 10

获取网络状态:

wx.getNetworkType({
      success: function(res) {
        console.log(res)
      },
    })

返回的数据
在这里插入图片描述

返回设备信息:

wx.getSystemInfo({
      success: function(res) {
        console.log(res)
      },
    })

微信小程序 ---设备及交互API 10_第1张图片

拨打电话:

wx.makePhoneCall({
      phoneNumber: '13060868459',
    })

微信小程序 ---设备及交互API 10_第2张图片
微信小程序 ---设备及交互API 10_第3张图片

交互反馈API

wx.showToast

(展示提示框,默认为2秒)
微信小程序 ---设备及交互API 10_第4张图片

wx.showToast({
      title: '成功',
    })

微信小程序 ---设备及交互API 10_第5张图片

wx.showModal

(展示一个提示弹窗)

 wx.showModal({
     title: '标题',
     content: '这是内容',
   })

微信小程序 ---设备及交互API 10_第6张图片

动画API

var animation = wx.createAnimation({
     duration:300,
     timingFunction:'linear',//"linear","ease",
     delay:0,
     transformOrigin:'50% 50% 0' 
   })

  //  animation.rotate(-180).scale(2).translate(100).step()
  animation.matrix(1,2,0,2,50,50).step();

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

微信小程序 ---设备及交互API 10_第7张图片

你可能感兴趣的:(小程序)