• 自定义视频播放器


    1.本次实例涉及的相关属性介绍

    (1)涉及视频的相关属性介绍

    volume: 设置或返回音频/视频的音量(规定音频/视频的当前音量。必须是介于 0.0 与 1.0 之间的数字,默认值:1.0。)
    playbackRate: 设置或返回音频/视频播放的速度(示例:1.0 正常速度,0.5 半速(更慢),2.0 倍速(更快)
    duration: 返回当前音频/视频的长度(以秒计)
    currentTime: 设置或返回音频/视频中的当前播放位置(以秒计)

    (2) 涉及视频的相关事件介绍

    canplay: 当浏览器可以播放音频/视频时
    ended: 当目前的播放列表已结束时
    pause: 当音频/视频已暂停时
    play: 当音频/视频已开始或不再暂停时
    ratechange: 当音频/视频的播放速度已更改时
    timeupdate: 当目前的播放位置已更改时
    volumechange: 当音量已更改时

    详细的媒体类属性和事件学习请参考:https://www.w3school.com.cn/tags/html_ref_audio_video_dom.asp

    2. 实例如下:

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="//at.alicdn.com/t/c/font_2996480_byv08gmc40d.css" />
        <link rel="stylesheet" type="text/css" href="./css/index.css" />
        <title>Documenttitle>
    head>
    
    <body>
        <div class="player">
            <div class="title">视频标题div>
            <div class="show-ending">播放结束div>
            <video src="./video/1.mp4" oncanplay="">video>
            
            <div class="controls-box">
                <div class="v-play iconfont icon-shipinbofang">div>
                <div class="progress">
                    <div class="default-line">div>
                    <div class="real-step">div>
                div>
                
                <div class="volumn iconfont icon-shengyin_shiti">
                    <div class="line-wrapper">
                        <div class="line">div>
                        <div class="bar">div>
                    div>
                div>
                
                <div class="rate-wrapper iconfont icon-dangwei">
                    <ul class="rate-level-wrapper">
                        <li class="rate-level" id="r-2">2.0倍速li>
                        <li class="rate-level" id="r-1">1.0倍速li>
                        <li class="rate-level" id="r-0.5">0.5倍速li>
                    ul>
                div>
                <div class="time-show">
                    <span class="current-time">00:00:00span> /
                    <span class="total-time">00:00:00span>
                div>
                <div class="full-screen iconfont icon-quanping">div>
            div>
        div>
        <script>
            let video = $('video'),
                playBtn = $('.v-play'),
                totalTime = $('.total-time'),
                currentTime = $('.current-time'),
                currentBar = $('.real-step'),
                progress = $('.progress'),
                showEnding = $('.show-ending'),
                player = $('.player'),
                volumn = $('.line-wrapper'),
                volumnBar = $('.bar'),
                volumnBox = $('.volumn')
                rateBox = $('.rate-level-wrapper')
            function $(name) {
                return document.querySelector(name)
            }
            // 过滤时间
            function filterTime(data) {
                if (!data) {
                    return '00:00:00'
                }
                data = String(data)
                let hours = String(Math.floor(data / 3600)),
                    minutes = String(Math.floor(data % 3600 / 60)),
                    seconds = String(Math.floor(data % 3600 % 60))
                return hours.padStart(2, '0') + ':' + minutes.padStart(2, '0') + ':' + seconds.padStart(2, '0')
            }   
            function playVideo(e, hasControls) {
                if (hasControls) {
                    if (e.target.className.includes('icon-shipinbofang')) {
                        // 播放
                        e.target.className = e.target.className.replace('icon-shipinbofang', 'icon-shipinzanting')
                        // video.pause()
                    } else {
                        // 暂停
                        e.target.className = e.target.className.replace('icon-shipinzanting', 'icon-shipinbofang')
                        video.play()
                    }
                    return
                }
                if (e.target.className.includes('icon-shipinbofang')) {
                    // 播放
                    e.target.className = e.target.className.replace('icon-shipinbofang', 'icon-shipinzanting')
                    video.play()
                } else {
                    // 暂停
                    e.target.className = e.target.className.replace('icon-shipinzanting', 'icon-shipinbofang')
                    video.pause()
                }
            }
            document.addEventListener('click', function (e) {
                /*
                **
                **
                控制视频的播放与暂停
                **
                **
                ** 
                */
                if (e.target.className.includes('v-play')) {
                    playVideo(e)
                    return
                }
                /*
                 **
                 **
                 **
                 计算当前进度条对应的时间
                 处理点击进度条进行快进快退的模块
                 **
                 **
                 **
                 */
                if (e.path[0].className.includes('progress') || e.path[1].className.includes('progress')) {
                    // 计算当前时间 e.offsetX / progress.offsetWidth * video.duration
                    video.currentTime = e.offsetX / progress.offsetWidth * video.duration
                    playVideo(e, true)
                    return
                }
                /* 
                 **
                 **
                 **
                 音量模块的代码
                 **
                 **
                 **
                 */
                // 设置视频的音量
                if (e.path[0].className.includes('line-wrapper') || e.path[1].className.includes('line-wrapper')) {
                    if (video.volume === 0) {
    
                        volumnBox.className = volumnBox.className.replace('icon-shengyin_shiti', 'icon-jinyin')
                    }
                    if (volumnBox.className.includes('icon-jinyin')) {
                        volumnBox.className = volumnBox.className.replace('icon-jinyin', 'icon-shengyin_shiti')
                    }
                    video.volume = e.offsetY / 100
                    volumnBar.style.height = e.offsetY + 'px'
                    return
                }
                if (e.target.className.includes('volumn')) {
                    volumnBar.style.height = video.volume * 100 + 'px'
                    volumn.style.display !== 'block' ? volumn.style.display = 'block' : volumn.style.display = 'none'
                    return
                }
                /*
                 **
                 **
                 **
                 变更视频的播放速率:
                 playbackRate 属性设置或返回音频/视频的当前播放速度
                 只有 Google Chrome 和 Safari 支持 playbackRate 属性。
                 audio|video.playbackRate=playbackspeed
                 注意速率不能设置负值,会报错的
                 **
                 **
                 **
                 */
                if (e.target.className.includes('rate-wrapper')) {
                    rateBox.style.display = 'block'
                    return
                }
                if (e.target.className === 'rate-level') {
                    let id = e.target.id.replace('r-', '')
                    video.playbackRate = Number(id)
                    console.log(video.playbackRate, 'video.playbackRate')
                    rateBox.style.display = 'none'
                    return
                }
                /*
                * *
                * *
                * *
                处理全屏展示与退出全屏的操作
                **
                **
                */
                if (e.target.className.includes('full-screen')) {
                    if (e.target.className.includes('icon-quanping')) {
                        // 全屏
                        e.target.className = e.target.className.replace('icon-quanping', 'icon-quxiaoquanping')
                        player.webkitRequestFullScreen()
                    } else {
                        // 退出全屏
                        e.target.className = e.target.className.replace('icon-quxiaoquanping', 'icon-quanping')
                        document.webkitExitFullscreen()
                    }
                    return
                }
            })
            /*
            **
            **
            当文件就绪可以开始播放时运行的脚本(缓冲已足够开始时),能够获取到对应的视频总时长
            **
            **
            **
            */
            video.oncanplay = function (e) {
                video.style.display = 'block'
                console.log('当文件就绪可以开始播放时运行的脚本(缓冲已足够开始时),能够获取到对应的视频总时长')
                totalTime.innerText = filterTime(video.duration)
    
            }
            /*
            **
            **
            **
            时间每次更新的时候给当前时间模块赋值(ontimeupdate:当播放位置改变时(比如当用户快进到媒介中一个不同的位置时)运行的脚本。)
            **
            **
            **
            */
            video.ontimeupdate = function (e) {
                if (video.currentTime !== video.duration) {
                    showEnding.style.display = 'none'
                }
                currentTime.innerText = filterTime(video.currentTime)
                // 进度条长度计算:  video.currentTime/ video.duration 
                currentBar.style.width = (video.currentTime / video.duration) * 100 + '%'
            }
    
            /* 
            **
            **
            **
            播放结束时需要提示播放结束(onended:当媒介已到达结尾时运行的脚本)
            **
            **
            **
            */
            video.onended = function (e) {
                showEnding.style.display = 'block'
                video.style.display = 'none'
                playBtn.className = playBtn.className.replace('icon-shipinzanting', 'icon-shipinbofang')
            }
    
            // 每当音量改变时触发onvolumechange事件
            video.onvolumechange = function (e) {
                if (video.volume === 0) {
                    volumnBox.className = volumnBox.className.replace('icon-shengyin_shiti', 'icon-jinyin')
                }
            }
        script>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254

    实例运行图:
    在这里插入图片描述

  • 相关阅读:
    sprinboot打包jar后读取不到/resource/data/ip2region.xdb的文件.
    UNIX网络套接字相关总结
    qt绘图事件
    SpringMVC (3)—拦截器
    贪心算法--概论
    CDGA|交通行业做好数字化转型的核心是什么?
    ChatGPT OpenAI 行政HR会计财务办公自动化操作
    接口测试之深入理解HTTPS
    买卖股票的最佳时机 II
    C++中vector用法总结
  • 原文地址:https://blog.csdn.net/Kratial/article/details/126145126