mute and unmute button toggle html5 audio

后端 未结 2 627
余生分开走
余生分开走 2020-12-11 11:45

I\'ve understood how to mute an sound object by putting this code :



        
2条回答
  •  -上瘾入骨i
    2020-12-11 12:02

    Try this:

    .unmute {
      background-image: url(http://franriavilla.in/images/unmute.png);
      background-size: cover;
      width: 35px;
      height: 30px;
      cursor: pointer;
    }
    
    .mute {
      background-image: url(http://franriavilla.in/images/mute.png);
    }
    
    
    
    
    

提交回复
热议问题