如何添加静音/取消静音按钮

时间:2016-01-03 10:34:28

标签: javascript html css

我试图在我的网站上添加静音/取消静音按钮。我使用Kolor的Panotour程序创建了一个全景游览。事情是我将其导出为HTML但似乎无法找到音频标签或任何东西。我找到了包含音频文件的文件,我只需要一种方法来静音。

Here are the audio files that are playing in the background

这是我到目前为止所做的事情。

<div>
   <img class="img-responsive" src="Images/muteon.png" id="mute" onclick="toggleSound(this);">
</div>

    <script>
         function toggleSound(img)
              {
                  if(img.src.match(/blank/))
                     {
                        console.log('black');
                        img.src = "Images/muteon.png";
                      }
                  else
                      {
                        console.log('blank');
                        img.src = "Images/muteoff.png";
                      }
              }
  </script>

0 个答案:

没有答案