class为mute时,为播放按钮,没有mute时则放静音按钮。
$(‘.unmute‘).click(function() {
if ($(this).hasClass(‘mute‘)) {
video.muted = true;
}
else {
video.muted = false;
}
$(this).toggleClass(‘mute‘)
})
学习链接:https://www.cnblogs.com/caoyibo/articles/5685994.html
原文地址:https://www.cnblogs.com/studyh5/p/9801070.html
时间: 2024-10-10 05:27:48