- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我发现这段代码可以在点击时播放音频文件,但它只允许播放一个音频文件。现在,我试图重写代码,但它不起作用,我找不到问题所在。我是 JavaScript 的新手,所以如果您有更好的解决方案,请告诉我。
为了理解我想要完成的事情,这是我的概念:我正在尝试为移动设备(iOS 和 Android)制作一个基于网络的应用程序, children 可以在其中混合声音来制作他们自己的歌曲。他们可以将声音拖放到将播放所有声音的时间线中。但在拖动它们之前,他们还可以播放它们(这样他们就可以在将它们拖动到时间线之前通过单击包含图像的按钮听到声音)。
这是原始的 HTML:
<input id="audiofile" type="text" value="" style="display: none;"/>
<button id="myElement" class="dndplay" onClick="playAudio();" draggable="true"></button>
<button id="myElement" class="dndplay" onClick="playAudio();" draggable="true"></button>
<audio id="myaudio"></audio>
这是原始的 JavaScript:
var currentFile = "";
function playAudio() {
var oAudio = document.getElementById('myaudio');
// See if we already loaded this audio file.
if ($("#audiofile").val() !== currentFile) {
oAudio.src = $("#audiofile").val();
currentFile = $("#audiofile").val();
}
var test = $("#myaudio");
test.src = $("#audiofile").val();
oAudio.play();
}
$(function() {
if (Modernizr.audio) {
if (Modernizr.audio.ogg) {
$("#audiofile").val("sounds/Stoomloco_Lunetten.ogg");
}
if (Modernizr.audio.mp3) {
$("#audiofile").val("sounds/Stoomloco_Lunetten.mp3");
}
}
});
这是我写的代码,但不起作用:
<input id="audioOne" type="text" value="" style="display: none;"/>
<button id="framentOne" class="dndplay" onClick="playAudio1" draggable="true"></button>
<input id="audioTwo" type="text" value="" style="display: none;"/>
<button id="fragementTwo" class="dndplay" onClick="playAudio2" draggable="true"></button>
<audio id="myaudio1"></audio>
<audio id="myaudio2"></audio>
var currentFile = "";
var playAudio1 = {
playAudioOne: function() {
var fragmentOne = document.getElementById('myaudio1');
// See if we already loaded this audio file.
if ((modernizr1, "#audioOne").val() !== currentFile) {
fragmentOne.src = (modernizr1, "#audioOne").val();
currentFile = (modernizr1, "#audioOne").val();
}
var test = (modernizr1, "#myaudio1");
test.src = (modernizr1, "#audioOne").val();
fragmentOne.play();
},
modernizr1: function() {
if (Modernizr.audio) {
if (Modernizr.audio.ogg) {
("#audioOne").val("sounds/Stoomloco_Lunetten.ogg");
}
if (Modernizr.audio.mp3) {
("#audioOne").val("sounds/Stoomloco_Lunetten.mp3");
}
}
}
};
var playAudio2 = {
playAudioTwo: function() {
var fragmentTwo = document.getElementById('myaudio2');
// See if we already loaded this audio file.
if ((modernizr2, "#audioTwo").val() !== currentFile) {
fragmentTwo.src = (modernizr2, "#audioTwo").val();
currentFile = (mdernizr2, "#audioTwo").val();
}
var test = (modernizr2, "#myaudio2");
test.src = (modernizr2, "#audioTwo").val();
fragmentTwo.play();
},
modernizr2: function() {
if (Modernizr.audio) {
if (Modernizr.audio.ogg) {
("#audioTwo").val("sounds/Marsmanplein_Ventilator.ogg");
}
if (Modernizr.audio.mp3) {
("#audioTwo").val("sounds/Marsmanplein_Ventilator.mp3");
}
}
}
};
最佳答案
我知道如果您是 JavaScript 的新手,这可能有点过分,但我绝对会建议您看一下 Web Audio API: http://chromium.googlecode.com/svn/trunk/samples/audio/index.html
我已经开始尝试使用 HTML 格式的音频并找到了原生的 <audio>
与在浏览器中播放单个歌曲文件相比,如果您需要更多,它会非常缓慢和笨拙。
关于javascript - 试图重写 playAudio 但不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13628546/
我是 C++ 的新手,我在使用这段代码时遇到了问题: string output_date(int day, int month, int year){ string date; if
所以我这样做了 tar cvzf test.zip FP 为了创建目录 FP 的 zip 但是,它会列出 zip 中的目录 FP/ FP/php/ FP/php/pdf/ FP/php/docs/ F
我正在尝试在 Swift、Xcode 7.3(所以是 Swift 2.2)中创建一个通用类,但我似乎无法让它通过编译器: protocol Struct1Protocol { } struct Str
我的测试用例是这样的: class FooTest extends PHPUnit_Framework_TestCase { /** @covers MyClass::bar */ f
我正在尝试将brew install wine作为使electron-builder工作的一步。但是我所能得到的只是以下响应: ==> Installing dependencies for wine
我这样做: string[,] string1 = {{"one", "0"},{"Two", "5"},{"Three","1"}}; int b = 0; for(int i = 0; i <=
我正在尝试使用 SetWindowsHookEx 键盘 Hook Notepad.exe。 如您所见,工作线程正在将其 ASCII 代码(即 wParam)发送到指定的服务器。 UINT WINAPI
我正在尝试将 ListView 实现到我的 Fragment 中,但无论我尝试什么,我都会得到一个 NullPointerException。我检查对象是否为 null 并记录是否为 null,看起来
我尝试在一行中对齐两个 div。使用 float left 属性,一切顺利。但是当我在 div 中使用图像时,它开始产生问题。 所以这是我的示例代码:- Some headi
我目前正在使用此代码来获取图像的灰度图像表示并以 (512, 370, 1) 的格式表示它大批。 img_instance = cv2.imread(df.iloc[i][x_col]) / 255.
总结 我正在创建一个简单的应用程序,它允许用户选择一个包含顶级窗口的进程。用户首先键入 native DLL(而非托管 DLL)的路径。然后用户键入将在 Hook 过程中调用的方法的名称。该方法不得返
我是一名优秀的程序员,十分优秀!