vue应用全局音乐(自动播放)

这里写自定义目录标题

1.从同事哪里白嫖过来的,主要是jq写的,需要单独引入jq cdn
2.打开index.html 将代码放到里面
在这里插入图片描述

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"
    />
    <title>全局音乐</title>
  </head>
  <style>
   @-webkit-keyframes rotate_music{0%{transform: rotate(0deg);} 50%{transform: rotate(180deg);} 100%{transform: rotate(360deg);}}
.music{position: absolute; width: .6rem; height: .6rem; z-index: 2; right: 3%; top:6%; }
.music_rotate{-webkit-animation:rotate_music 5s linear infinite; transform-origin: 50% 50%;}
.map{ animation-play-state: paused}
.wid100{width: 100%;}
  </style>
  <body style="background-color: #fff;">
    <div class="music music_rotate">
      <img
        src="音乐图标地址"
        class="wid100"
        alt=""
      />
    </div>
    <div id="app"></div>
    <!-- built files will be auto injected -->
    <div style="display: none">
      <script
        type="text/javascript"
        src="https://v1.cnzz.com/z_stat.php?id=1280693457&web_id=1280693457"
      ></script>
    </div>
  </body>
  <!--引入jq-->
  <script
    src="https://lf9-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/1.7.2/jquery.min.js"
    type="application/javascript"
  ></script>
  <script>
   new BGMAutoPlayMgr(
      "线上音乐地址"
    );
    function BGMAutoPlayMgr(url) {
      this.audioContext = new (window.AudioContext ||
        window.webkitAudioContext ||
        window.mozAudioContext)();
      this.sourceNode = null;
      this.buffer = null;
      this.isPlayingBGM = false;
      // $(".music").addClass("map"); //关闭音乐
      this.toggleBGM = function() {
        console.log("音乐进来了嘛");
        if (typeof this.sourceNode == "object") {
          console.log("进来", this.isPlayingBGM);
          if (this.isPlayingBGM) {
            this.sourceNode.stop();
            this.isPlayingBGM = false;
            // $(".music").addClass("map");
            $(".music").addClass("map"); //关闭音乐
          } else {
            console.log("移除音乐");
            $(".music").removeClass("map");
            this._playSourceNode(); //开启音乐
          }
        }
      };
      this._playSourceNode = function() {
        console.log("开启音乐");
        const audioContext = this.audioContext;
        audioContext.resume();
        const _sourceNode = audioContext.createBufferSource();
        _sourceNode.buffer = this.buffer;
        _sourceNode.loop = true;
        _sourceNode.connect(audioContext.destination);
        _sourceNode.start(0);
        this.sourceNode = _sourceNode;
        this.isPlayingBGM = true;
      };
      let loadAndAutoPlay = audioUrl => {
        const audioContext = this.audioContext;
        const xhr = new XMLHttpRequest();
        xhr.open("GET", audioUrl, true);
        xhr.responseType = "arraybuffer";
        xhr.onreadystatechange = () => {
          if (xhr.status < 400 && xhr.status >= 200 && xhr.readyState === 4) {
            audioContext.decodeAudioData(xhr.response, buffer => {
              this.buffer = buffer;
              WeixinJSBridge.invoke("getNetworkType", {}, () =>
                this._playSourceNode()
              );
            });
          }
        };
        xhr.send();
      };
      loadAndAutoPlay(url);
      loadAndAutoPlay = null;
      let that = this;

      $(".music").on("click", function() {
        that.toggleBGM();
      });
    }
  </script>
</html>

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值