[vue3]audio音乐进度条(二)跟随播放进度

/ 5,992评论 / 24318阅读 / 2点赞

上一期我们介绍了外观设计,这把我们聊聊让进度条跟随播放进度走

预期效果


准备


实现

<div id="root_div" class="cmusic_displayFlex_class" style="height:150px;justify-content:space-between;align-items: center;">
    <!-- 音频 -->
    <audio id="cmusic_audio" ref="cmusic_audio" controls muted
        @timeupdate="audio_lengthChange()" :src="url_audio">
    </audio>

    <span id="cmusic_control_span_progressBar">
        <div class="cmusic_displayFlex_class cmusic_control_progress_div" style="flex-direction: row;">
            <span id="cmusic_control_span_loadProgress" :style="cmusic_control_loadProgress_style"></span>
            <span id="cmusic_control_span_progress" :style="cmusic_control_progress_style"></span>
        </div>
    </span>
<div>
<style>
/*外框*/
#cmusic_control_span_progressBar{
    border-radius: 50px;
    height: 20px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    position: relative;
    background: transparent;
    box-shadow: inset 2px 2px 4px #bcc5d6,
        inset -2px -2px 5px #feffff;
    border: 2px solid #d0f4ff;
    justify-content: center;
    transition: all 0.8s ease;
}
/*布局类*/
.cmusic_displayFlex_class {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}
.cmusic_control_progress_div {
    position:absolute;
    width:94% !important;
    height:100%;
    align-items: center;
}
/*进度条*/
#cmusic_control_span_progress,
#cmusic_control_span_loadProgress{
    background: linear-gradient(90deg, #c4f4fe, #66ccff);
    border-radius: 50px;
    position: absolute;
    width:100%;
    height: 60%;
    pointer-events: none;
    transition: width 0.5s ease;
    box-shadow: 2px 2px 10px #ccd3ff,
    -2px -2px 10px #ccd3ff;
}
/*加载进度条*/
#cmusic_control_span_loadProgress {
    background: linear-gradient(90deg, #abecd6, #fff9d2);
}
</style>
<!-- 引入vue -->
<script src="https://unpkg.com/vue@3.2.33"></script>
<script>
const { createApp } = Vue

var cmusic_json = {
    //数据
    data() {
        return {
            url_audio:"https://blog.coolight.cool/wp-content/uploads/2022/05/大喜_洛天依.m4a",
            cmusic_control_loadProgress_style:"width:80%",
            cmusic_control_progress_style:"width:50%"
        }
    },
    //函数
    methods:{
        //监听播放时长,修改进度条长度
        audio_lengthChange:function(){
            let caudio = this.$refs.cmusic_audio;
            //duration是音频总时长
            //如果音频元数据加载完成,才能获得其总时长,后续才能进行计算
            if (!isNaN(caudio.duration)){
                this.cmusic_control_progress_style = "width:" + (parseInt(caudio.currentTime / caudio.duration * 100)).toString() + "%;";
            }else{
                this.cmusic_control_progress_style = "width:0%;";
            }
        }
    }
};

var cmusic_app = Vue.createApp(cmusic_json);
var cmusic_vue = cmusic_app.mount("#root_div");
</script>
  1. CharlesLem说道:

    https://indiapharmacy.shop/# best india pharmacy
    get ed prescription online

  2. Douglasnug说道:

    buying from online mexican pharmacy: Mexico pharmacy online – mexican drugstore online

  3. CharlesLem说道:

    http://indiapharmacy.shop/# reputable indian online pharmacy
    get ed meds today

  4. CharlesLem说道:

    http://indiapharmacy.shop/# buy prescription drugs from india
    ed pills cheap

  5. CharlesLem说道:

    https://mexicopharmacy.win/# buying prescription drugs in mexico
    ed meds cheap

  6. Douglasnug说道:

    get ed meds today: cheap ed pills online – cheapest online ed meds

  7. Leonardskarm说道:

    http://edpillpharmacy.store/# ed prescriptions online

  8. Leonardskarm说道:

    https://indiapharmacy.shop/# indianpharmacy com

  9. Douglasnug说道:

    indian pharmacy online: Online pharmacy USA – Online medicine home delivery

  10. Douglasnug说道:

    buying prescription drugs in mexico online: Mexico pharmacy online – mexico drug stores pharmacies

  11. CharlesLem说道:

    http://mexicopharmacy.win/# buying prescription drugs in mexico
    online erectile dysfunction

  12. CharlesLem说道:

    http://edpillpharmacy.store/# online erectile dysfunction
    erectile dysfunction medication online

  13. CharlesLem说道:

    http://edpillpharmacy.store/# ed medications cost
    ed online meds

  14. Douglasnug说道:

    erectile dysfunction online prescription: Cheapest online ED treatment – buy ed pills online

  15. CharlesLem说道:

    https://edpillpharmacy.store/# cheapest ed treatment
    ed meds by mail

  16. porn说道:

    homosexual porn

  17. Leonardskarm说道:

    http://edpillpharmacy.store/# online ed pills

  18. Snaptik说道:

    I blog frequently and I seriously thank you for your information. This article has really peaked my interest. I will take a note of your website and keep checking for new details about once per week. I opted in for your RSS feed too.

  19. Douglasnug说道:

    mexico pharmacies prescription drugs: mexico pharmacy win – mexican mail order pharmacies

  20. CharlesLem说道:

    https://mexicopharmacy.win/# mexican drugstore online
    cheapest online ed treatment

  21. CharlesLem说道:

    https://mexicopharmacy.win/# medication from mexico pharmacy
    erectile dysfunction pills for sale

  22. CharlesLem说道:

    http://mexicopharmacy.win/# mexico pharmacies prescription drugs
    where can i buy erectile dysfunction pills

  23. Douglasnug说道:

    purple pharmacy mexico price list: Certified Mexican pharmacy – mexican rx online

  24. Douglasnug说道:

    buying from online mexican pharmacy: Certified Mexican pharmacy – reputable mexican pharmacies online

  25. Georgemuh说道:

    100 mg viagra lowest price: Viagra without a doctor prescription – viagra without doctor prescription

  26. porn说道:

    lesbian porn

  27. Samuelrip说道:

    https://sildenafil.llc/# buy viagra professional

  28. that site说道:

    Spot on with this write-up, I honestly believe that this web site needs a lot more attention. I’ll probably be returning to read more, thanks for the advice.

  29. Georgemuh说道:

    buy viagra pills: Buy Viagra online cheap – cialis vs viagra

  30. Georgemuh说道:

    how long does cialis last: Buy Cialis online – cialis mail order

  31. Georgemuh说道:

    buy viagra online: Cheap generic Viagra – 100mg viagra without a doctor prescription

  32. Samuelrip说道:

    https://sildenafil.llc/# viagra dosage recommendations

  33. Georgemuh说道:

    viagra for women: Viagra without a doctor prescription – over the counter alternative to viagra

  34. download mp3说道:

    Pretty! This has been an extremely wonderful post. Thank you for supplying this info.

  35. Georgemuh说道:

    viagra coupon: Buy Viagra online in USA – buy generic viagra online

  36. Samuelrip说道:

    https://tadalafil.auction/# cialis going over the counter

  37. Georgemuh说道:

    buy viagra order: buy sildenafil online usa – viagra professional

  38. Georgemuh说道:

    viagra cost: Viagra online price – how does viagra work

  39. on their page说道:

    This is a topic that is near to my heart… Take care! Where can I find the contact details for questions?

  40. read more there说道:

    I was able to find good info from your articles.

  41. Georgemuh说道:

    generic cialis no prescription australia: Buy Tadalafil 20mg – cialis buy

  42. Samuelrip说道:

    https://tadalafil.auction/# how to get doctor to prescribe cialis

  43. Georgemuh说道:

    cialis for sale canada: Buy Tadalafil 20mg – how to buy generic cialis online

  44. Georgemuh说道:

    real viagra without a doctor prescription: Cheap Viagra online – viagra dosage

  45. Georgemuh说道:

    can i take cialis with daxpoteine: cialis without a doctor prescription – cialis/dapoxetine with overnight ship

  46. Georgemuh说道:

    online cialis australia: cialis nz – where can i buy cialis 20mg

  47. blog说道:

    This excellent website truly has all of the information I needed concerning this subject and didn’t know who to ask.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注