$(".sound").click(function() {
if ($(".intro-movie").prop('muted', true)) {
$(".intro-movie").prop('muted', true);
$(".sound").addClass("muted");
} else {
$(".intro-movie").prop('muted', false);
$(".sound").removeClass("muted");
}
});
单击时,尝试获取声音图标“.sound”以将html5视频“.intro-movie”静音或取消静音。
答案 0 :(得分:1)
我试过可能的例子,我终于自己做了。它运作得很好。
function mute() {
if(myaudio.muted) {
myaudio.muted=!myaudio.muted;
document.getElementById("volume").style.backgroundImage = "url(resources/vol.png)";
}else{
myaudio.muted=!myaudio.muted;
document.getElementById("volume").style.backgroundImage = "url(resources/mute.png)";
}
}