gpt4 book ai didi

jquery - 如何实现 jquery.sound.js?

转载 作者:行者123 更新时间:2023-12-03 02:26:17 25 4
gpt4 key购买 nike

我想要一个按钮在鼠标悬停时发出哔哔声。

我想使用 jquery.sound.js

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

我从另一个半途而废的回答中了解到,sound.js 根据您提供的文件 url 进行自我配置......(?)

但是一个人在哪里写网址?

我要为它制作什么样的元素?跨度?一个部门?它的 id 必须是什么?

另外,如果嵌入元素是动态注入(inject)的,那么应该如何看到它在 URL 中写入呢?

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

人:如果你喜欢别人,那就太棒了。请做一个彻底的工作,否则它只会让人们感到沮丧和浪费时间,因为他们必须重新开始另一个搜索......有时我需要六个不同的网站才能得到一个可以理解的答案,其中包括一个如何写作的例子HTML、javascript 或其他。

最佳答案

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

包括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

关于jquery - 如何实现 jquery.sound.js?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4502300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com