我在使用插件时遇到了麻烦,即使代码很简单,我的浏览器似乎也无法播放任何东西:(

  • 一些上下文:
  • 计算机是带有Windows 10的笔记本电脑
  • 浏览器是Firefox 43.0.4和Chrome 48.smthg

  • 和代码看起来像这样
  • sounds.js
    // init bunch of sounds
    ion.sound({
        sounds: [
            {
                name: "beer_can_opening",
                ended_callback: function () {
                    console.log("ended")
                },
                ready_callback: function () {
                    console.log("ready")
                }
            },
            {name: "bell_ring"},
            {name: "branch_break"},
            {name: "button_click"}
        ],
    
        // main config
        path: "sounds/",
        preload: true,
        multiplay: true,
        volume: 0.9,
        loop: 10
    });
    
    // play sound
    ion.sound.play("beer_can_opening");
    
  • index.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
    <head>
        <script src="jquery-1.12.0.min.js"></script>
        <script src="ion.sound.min.js"></script>
        <script src="sounds.js"></script>
        <script src="sorcery.js"></script>
        <link type="text/css" rel="stylesheet" href="style.css"/>
        <meta lang="fr" xml:lang="fr" content="text/html;charset=UTF-8" http-equiv="Content-Type">
        <title>Sword & Sorcery</title>
    </head>
    
  • 最后,文件夹的声音也在那里了,beer_can_opening.aac / ogg / mp3也是如此。
  • 在两个浏览器的控制台中,无论我等待多长时间
  • ,我都变得“准备就绪”但没有“结束”
  • 没有其他错误:(
  • http://ionden.com/a/plugins/ion.sound/en.html上的演示(就像作者发布的任何其他演示一样)效果很好

  • 非常感谢帮助,此插件应能很好地完成工作,我真的很想使用它:)

    最佳答案

    这是一个自动播放错误。在最新版本中已修复:https://github.com/IonDen/ion.sound/issues/71

    07-28 11:39