我正在尝试使用Sound Manager2示例实现以下音频:
万维网。 shillmania / projects / soundmanager2 / demo / play-mp3-links / basic.html
我认为我已将所有文件正确链接,因为调试信息正在检出, 但该页面将我重定向到单独页面中的quicktime链接。
文档说明:“SoundManager 2拦截对MP3链接的点击并以内联方式播放。脚本会为链接指定其他CSS类以指示其状态(播放/暂停等)”
我可以使用inline.js中的鼠标悬停事件替换点击事件吗?或者这需要重大写?我的目标是通过后备在所有浏览器的菜单上对鼠标悬停事件发挥快速声音效果。
感谢任何意见,谢谢!
答案 0 :(得分:1)
我的猜测是,它无效,因为soundManager
设置正在进行两次:一次在inlineplayer.js
...
soundManager.debugMode = true; // disable or enable debug output
soundManager.useFlashBlock = true;
soundManager.url = '../../swf/'; // path to directory containing SM2 SWF
// optional: enable MPEG-4/AAC support (requires flash 9)
soundManager.flashVersion = 9;
soundManager.useMovieStar = true;
// ----
soundManager.onready(function() {
if (soundManager.supported()) {
// soundManager.createSound() etc. may now be called
inlinePlayer = new InlinePlayer();
}
});
...再次与HTML本身内联:
soundManager.url = 'soundmanager/swf/';
soundManager.flashVersion = 9; // optional: shiny features (default = 8)
soundManager.useFlashBlock = true; // optionally, enable when you're ready to dive in
// enable HTML5 audio support, if you're feeling adventurous. iPad/iPhone will always get this.
//soundManager.useHTML5Audio = true;
// (cut)
soundManager.onready(function() {
if (soundManager.supported()) {
alert('Yay, SM2 loaded OK!');
} else {
alert('Oh snap, SM2 could not start.');
}
});
设置存在冲突,我认为HTML中的soundManager.url
是正确的,但其他所有内容都应来自inlineplayer.js
。根据需要进行编辑,直到每个参数仅设置一次。