我正在尝试让音频声音在触摸时播放,但无法使其始终如一地工作,它在 android 上有库存和 dolphin,但在 ipad 上根本不工作。我试过mousedown,onclick,touchstart,on touchstart。他们都没有工作
<canvas id="scratcher1" class="scratchMe" width="99px" height="89px" onmousedown="alert(down)" onclick="alert(click)" touchstart="alert(touch)" ontouchstart="alert(ontouch)"></canvas>
<canvas id="scratcher2" class="scratchMe" width="99px" height="89px" onmousedown="scratch.play()"></canvas>
这就是它现在的情况,切换到警报,所以我可以尝试找出哪个有效,正如我所说的那样。