本文编辑: 大妖怪浏览 2425 版权所有,严禁转载
接口 | 说明 |
---|---|
wx.createAudioContext | 创建并返回 audio 上下文 audioContext 对象 |
wxml
<audio src="{{src}}" id="myAudio" ></audio>
<button type="primary" bindtap="audioPlay">播放</button>
<button type="primary" bindtap="audioPause">暂停</button>
<button type="primary" bindtap="audio14">设置当前播放时间为14秒</button>
<button type="primary" bindtap="audioStart">回到开头</button>
js
Page({
onReady: function (e) {
// 使用 wx.createAudioContext 获取 audio 上下文 context
this.audioCtx = wx.createAudioContext('myAudio')
this.audioCtx.setSrc('http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E06DCBDC9AB7C49FD713D632D313AC4858BACB8DDD29067D3C601481D36E62053BF8DFEAF74C0A5CCFADD6471160CAF3E6A&fromtag=46')
this.audioCtx.play()
},
data: {
src: ''
},
audioPlay: function () {
this.audioCtx.play()
console.log("开始播放成功");
},
audioPause: function () {
this.audioCtx.pause()
console.log("暂停播放成功");
},
audio14: function () {
this.audioCtx.seek(14)
console.log("从从14秒开始播放成功");
},
audioStart: function () {
this.audioCtx.seek(0)
console.log("从头开始播放成功");
}
})
【audioContext】:【audioContext 通过 audioId 跟一个 组件绑定,通过它可以操作对应的 组件】
参数 | 参数 | 描述 |
---|---|---|
setSrc | src | 音频的地址 |
play | 无 | 播放 |
pause | 无 | 暂停 |
seek | position | 跳转到指定位置,单位 s |