首页 > 其他 > 详细

video 默认静音(h5,flowplayer)

时间:2019-11-26 14:49:55      阅读:258      评论:0      收藏:0      [点我收藏+]

根据需求,目前的视频需要默认静音

h5

//muted
<video id="video" class="videos" controls preload="auto"  autoplay="autoplay" muted src="hhhh.mp4" type="video/mp4"></video>

flowplayer

<a href="hhhh.mp4" id="player"></a>
//js
 flowplayer("player", "js/flowplayer/flowplayer-3.2.18.swf", {
            clip: {
                muted: true
            },
            plugins: {
                controls: {
                    mute: true, //静音按钮
                    tooltips: {mute: '静音',}
                }
            }
        });

video 默认静音(h5,flowplayer)

原文:https://www.cnblogs.com/gggggggxin/p/11934819.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!