jquery – HTML5声音插件?

前端之家收集整理的这篇文章主要介绍了jquery – HTML5声音插件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

目前我正在使用来启动我的网络应用程序中的声音. SoundManager使用Flash,有时会崩溃,导致声音消失. jQuery中是否有可靠的插件可以使用HTML5而不是Flash来提供声音?

我的设置:

soundManager.url = '/misc/soundmanager2/v20111220/';    // SoundManager fails if the SWF is loaded from the CDN
soundManager.debugMode = true;
soundManager.flashVersion = 9;
soundManager.useFlashBlock = false;
soundManager.useHTML5Audio = true;
最佳答案
SoundManager还可以播放纯HTML5声音.

SoundManager 2 gives you a single,powerful API that supports both new and old,using HTML5 audio where supported and optional Flash-based fallback where needed. Ideally when using SoundManager 2,audio “just works.”

Flash仅(可选)用作后备.或者对于所有浏览器都没有(非常好)支持的一些漂亮的东西.像频谱分析仪等

要“强制”SoundManager2使用HTML5音频,您可以添加以下参数:

soundManager.preferFlash = false;

overrides useHTML5audio. if true and flash support present,will try to use flash for MP3/MP4 as needed since HTML5 audio support is still quirky in browsers.

official docs.

原文链接:https://www.f2er.com/jquery/428582.html

猜你在找的jQuery相关文章