美文网首页
Howler 音频资源跨域提示html5

Howler 音频资源跨域提示html5

作者: aimee66 | 来源:发表于2019-04-30 17:11 被阅读0次

    Howler 音频资源跨域提示html5

    使用howler 播放音频时,会遇到资源跨域报错,因为Howler默认使用Web Audio,但在IE上可以自动转为HTML 5 Audio,而web audio兼容性不是很好,可以使用HTML 5 Audio

    this.sound = new Howl({
        src: [this.src],
        preload: this.preload,
        html5: true, // 设置为true 页面将使用原生video 标签渲染 不会导致资源跨域的情况
        onload: (e) => {
                this.duration = this.sound.duration()
                this.loading = false
        },
        onplay: this.setInterval,
        onpause: this.clearInterval,
        onend: this.setEnd
    })
    

    相关文章

      网友评论

          本文标题:Howler 音频资源跨域提示html5

          本文链接:https://www.haomeiwen.com/subject/ctgvnqtx.html