Snippets Collections
  document.addEventListener('DOMContentLoaded', function() {
var toggleSoundButton = document.querySelector('.toggle_sound');
var icon = document.querySelector('.toggle_sound i');
var heroBackgroundVideo = document.querySelector('.video video');
toggleSoundButton.addEventListener('click', function (event) {
if (heroBackgroundVideo.muted !== false){
	 
heroBackgroundVideo.muted=false;
icon.classList.add("fa-volume-up");
} else {
	 
heroBackgroundVideo.muted=true;
icon.classList.remove("fa-volume-up");
} }); }); 
star

Tue Jun 28 2022 17:00:45 GMT+0000 (Coordinated Universal Time)

#javascript #videoplay

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension