欢迎光临
感谢一路有你

小程序 | 背景音乐

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 
//实例化
const mMgr = wx.getBackgroundAudioManager()


import { classicBeh } from '../classic-beh.js'
const mMgr = wx.getBackgroundAudioManager()
Component({
  /**
   * 组件的属性列表
   */
  behaviors: [classicBeh],
  properties: {
    src:String
  },

  /**
   * 组件的初始数据
   */
  data: {
    playing:false,
    pauserSrc:'images/player@pause.png',
    playSrc:'images/player@play.png'
  },
//暂停音乐
  detached:function(event){
    // mMgr.stop()
  },
  attached:function(event){
    this._recoverStatus()
    this._monitorSwitch()
  },
  /**
   * 组件的方法列表
   */
  methods: {
    onPlay:function(event){
      if(!this.data.playing){
        this.setData({
          playing: true
        })
        mMgr.src = this.properties.src
      }else{
        this.setData({
          playing: false
        })
        mMgr.pause()
      }
    },
    _recoverStatus: function () {
      //判断当前播放状态
      if (mMgr.paused) {
        this.setData({
          playing: false
        })
        return
      }
      //判断是否是当前的音乐
      if (mMgr.src == this.properties.src) {
        this.setData({
          playing: true
        })
      }
    },
    //监听事件(让主控开关控制播放图标)
    _monitorSwitch:function(){
      //播放
      mMgr.onPlay(()=>{
        this._recoverStatus()
      })
      // 暂停
      mMgr.onPause(() => {
        this._recoverStatus()
      })
      //主控开关上的×
      mMgr.onStop(() => {
        this._recoverStatus()
      })
      // 让音乐自动播放完成
      mMgr.onEnded(() => {
        this._recoverStatus()
      })
    }
  }
  
})


 

赞(0) 打赏
未经允许不得转载:王明昌博客 » 小程序 | 背景音乐
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮