使用video swiper 组件,华为P20进入其他页面仍有视频播放的声音?
发布于 6 年前 作者 tdeng 3960 次浏览 来自 问答

使用video swiper 组件,华为P20进入其他页面仍有视频播放的声音。其他手机也会偶发bug。

我在video swiper中加入了页面生命周期,监听页面跳转后停止视频播放。事件触发了,但是视频仍然没有停止播放。这是怎么回事?

      pageLifetimes: {
              hide() {
          this.data._videoContexts.forEach(function (ctx, index) {
              ctx.pause();
          });
        },
        show() {
          this.playCurrent(this.data._last);
        },
    },
1 回复

你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

回到顶部