我如何实现jquery.sound.js?

时间:2010-12-21 17:48:41

标签: jquery audio

我想要一个按钮在鼠标滑过时发出一个昙花一现的声音。

我想使用jquery.sound.js

我在上面找到了插件,我喜欢jquery。但是我找不到关于如何使用它的文档。

我从另一个半问题的答案中了解到,sound.js会根据您提供的文件网址自行配置...(?)

但是在哪里写下网址?

我为它做了什么样的元素?跨度?分工?它的内容必须是什么?

另外,如果动态注入了embed元素,那么应该如何看到它在URL中写入?

就像我搜索的95%的“帮助”一样,我发现的答案对于一个不习惯使用jquery插件的人来说完全没用。

人们:如果你喜欢别人,那太棒了。只是做一个彻底的工作或它只是沮丧和浪费人们的时间,因为他们不得不重新开始另一个搜索...有时它需要我六个不同的网站才能得到一个可以理解的答案包括如何编写HTML,javascript或其他任何内容的示例。

1 个答案:

答案 0 :(得分:0)

你的意思是说你是javascriptjQuery的新手?这是播放声音的简单步骤......

包括jQuery.jsjquery.sound.js

以下是播放url

声音的一种方法
$.sound.play(url)

文档中的其他选项

/**
 * API Documentation
 * 
 * // play a sound from the url
 * $.sound.play(url)
 * 
 * // play a sound from the url, on a track, stopping any sound already running on that track
 * $.sound.play(url, {
 *   track: "track1"
 * });
 * 
 * // increase the timeout to four seconds before removing the sound object from the dom for longer sounds
 * $.sound.play(url, {
 *   timeout: 4000
 * });
 * 
 * // stop a sound by removing the element returned by play
 * var sound = $.sound.play(url);
 * sound.remove();
 * 
 * // disable playing sounds
 * $.sound.enabled = false;
 * 
 * // enable playing sounds
 * $.sound.enabled = true
 */

以下是要理解的源代码

http://code.google.com/p/jqueryjs/source/browse/trunk/plugins/sound/jquery.sound.js?r=5750