91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序怎么實現音頻文件播放進度

發布時間:2021-04-27 09:46:23 來源:億速云 閱讀:687 作者:小新 欄目:web開發

小編給大家分享一下微信小程序怎么實現音頻文件播放進度,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

問題描述

在微信小程序中經常會用到控制文件播放的滑塊,通過滑塊可控制音頻播放進度,下面即用代碼實現。

解決方案

首先用.wxml與 .wmss 代碼實現進度條的效果,再通過 .js 文件控制進度條的進度和進度條的時間顯示。

.wxml中(播放進度結構的代碼):

<view class="content-play-progress">
<text>{{play.currentTime}}</text>
<view>
<slider activeColor="#d33a31" block-size="12" backgroundColor="#dadada" value="{{play.percent}}"/>
</view>
<text>{{play.duration}}</text>
</view>

在上述代碼中,第五行用到了slider組件,其值為播放進度 play.percent。

.wxss中(播放進度樣式的代碼) :

.content-play-progress{
display: flex;
align-items: center;
margin: 0 35rpx;
font-size: 9pt;
text-align: center;
}
.content-play-progress>view{
flex: 1;
}

保存上述代碼后,運行程序,效果如圖:

微信小程序怎么實現音頻文件播放進度 

圖 1   微信小程序進度條的實現

.js中(控制進度條的進度和時間的代碼) :

onReady: function(){
this.audioCtx=wx.createInnerAudioContext()
var that=this
//播放失敗檢測
this. audioCtx.onError(function(){
console.log( ‘ 播放失敗: ' +that.audioCtx.src)
})
//播放完成自動換下一曲
this. audioCtx.OnEnded(function(){
that.next()
})
//自動更新播放進度
this. audioCtx.onPlay(function(){
this. audioCtx.onTimeUpdate(function(){
that.setData({
‘ play.duration ' : formatTime(that.audioCtx.duration),
‘ play.currrentTime ' : formatTime(that.audioCtx. currrentTime),
‘ play.percent ' : that.audioCtx. currrentTime /
that.audioCtx.duration*100
})
})
//默認選擇第一曲
T his.setMusic(0)
//格式化時間
function formatTime(time){
var minute=Math.floor(time/60)%60;
var second=Math.floor(time)%60
return (minute<10? ' 0 ' +minute:minute)+ ' : ' +
(second<10? ' 0 ' +second:second)
}
})
}

上述代碼中,通過調用audioCtx的 onTimeUpdate() 的方法,獲取音視頻狀態信息,并通過 formatTime() 函數處理時間格式,最后渲染到頁面實現實時更新效果,效果如圖:

微信小程序怎么實現音頻文件播放進度 

圖 2   微信小程序進度條的滑動

在slider組件上綁定 bindchange 事件,可以實現滑動進度條調節音視頻文件播放進度,代碼示例 :

<slider bindchange= ” sliderChange ” activeColor= ” #d33a31 ” block-size= ” 12 ” backgroundColor= ” #dadada ” value= ” {{play.percent}} ” / >

在.js文件中編寫 sliderChange 函數獲取用戶當前選擇的進度,將時間通過 audioCtx 對象的 seek() 方法進行設置,代碼示例:

sliderChange: function(e){
var second=e.detail.value* that.audioCtx.duration/100
that.audioCtx.seek(secend)
},

以上是“微信小程序怎么實現音頻文件播放進度”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴安县| 西吉县| 潞西市| 莱州市| 仲巴县| 甘谷县| 巨鹿县| 汾西县| 贡山| 甘肃省| 宁武县| 合作市| 仁寿县| 青州市| 井陉县| 道孚县| 仙桃市| 怀来县| 元朗区| 辽中县| 汕尾市| 河西区| 芦溪县| 墨竹工卡县| 南丰县| 吉木乃县| 塘沽区| 霍州市| 土默特左旗| 南投县| 区。| 武清区| 安龙县| 昭通市| 罗田县| 宁化县| 太和县| 开原市| 开远市| 乳山市| 牙克石市|