var shots = Math.ceil(Math.random(0,1)*5); var snd = new Audio("test.wav"); for (var i = 0; i < shots; i++){ snd.play(); } 现在,根据要发射多少“镜头”,我想 ...
確定! 回上一頁