admin管理员组文章数量:1340368
I have tried to create a function in javascript to mute a html video, and change the icon below to a mute icon that i have downloaded. Need Help. The javascript has to be able to work along side jquery as well
I have tried to create a function in javascript to mute a html video, and change the icon below to a mute icon that i have downloaded. Need Help. The javascript has to be able to work along side jquery as well
Share Improve this question asked Oct 21, 2014 at 2:39 KaiKai 291 gold badge1 silver badge5 bronze badges 1- try to add your sample code and try to explain what you already tried and what problems you came up with. You can use jsfiddle to build an example where people can work with – pscheit Commented Oct 21, 2014 at 2:56
2 Answers
Reset to default 7demo - http://jsfiddle/victor_007/6cc9mhbb/
on click of the button the icon will change
$("video").prop('muted', true);
$(".mute-video").click(function () {
if ($("video").prop('muted')) {
$("video").prop('muted', false);
$(this).addClass('unmute-video'); // changing icon for button
} else {
$("video").prop('muted', true);
$(this).removeClass('unmute-video'); // changing icon for button
}
console.log($("video").prop('muted'))
});
The question is fairly vague, so I'm guessing that this will answer your question. If you are using video tags in HTML
<video width="320" height="240" controls muted>
<source src="x" type="video/x">
<source src="x" type="x">
</video>
For Java script
<video id="myVideo" width="x" height="x" controls>
....
</video>
<button onclick="enableMute()" type="button">Mute sound</button>
<script>
var vid = document.getElementById("myVideo");
function enableMute() {
vid.muted = true;
}
</script>
As for your second questions, I don't quite understand it, please elaborate.
本文标签: javascriptHTML Video mute buttonStack Overflow
版权声明:本文标题:javascript - HTML Video mute button - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743622891a2511820.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论