InnerAudioContext.seek
2020-08-26 16:27 更新
解释:跳转到指定位置(单位:s)
方法参数
Number position
示例
图片示例
代码示例
<view class="wrap">
<view class="card-area">
<button type="primary" bindtap="seek">跳转到80s处</button>
</view>
</view>
Page({
onLoad() {
const innerAudioContext = swan.createInnerAudioContext();
innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
innerAudioContext.autoplay = true;
innerAudioContext.onPlay(res => {
swan.showModal({
title: 'onPlay',
content: JSON.stringify(res)
});
console.log('onPlay', res);
});
innerAudioContext.onSeeked(res => {
swan.showModal({
title: 'onSeeked',
content: '跳转完成'
});
});
innerAudioContext.onSeeking(res => {
swan.showModal({
title: 'onSeeking',
content: '正在跳转至音频80s后'
});
});
this.innerAudioContext = innerAudioContext;
},
seek() {
this.innerAudioContext.seek(80);
}
});
以上内容是否对您有帮助:
更多建议: