PhpMan نشر 29 يونيو 2015 أرسل تقرير نشر 29 يونيو 2015 أريد برمجة لعبة ب html و Javascript ،أثناء اشتغال اللعبة أود تشغيل ملف صوتي ب Javascript ؟ كيف أفعل ذلك؟ اقتباس
0 محترف نشر 30 يونيو 2015 أرسل تقرير نشر 30 يونيو 2015 الطريقة جد سهلة ،لِج للوسم عن طريق getElemetById ثم الدالة play:document.getElementById('yourAudioTag').play();كما يمكنك أيضا استخدام :var audio = new Audio('audio_file.mp3'); audio.play(); اقتباس
0 زائر نشر 13 أكتوبر 2023 أرسل تقرير نشر 13 أكتوبر 2023 new Audio('<url>').play() إذا كنت تريد نسخة تعمل مع المتصفحات القديمة فجرب هذه: function Sound(source, volume, loop) { this.source = source; this.volume = volume; this.loop = loop; var son; this.son = son; this.finish = false; this.stop = function() { document.body.removeChild(this.son); } this.start = function() { if (this.finish) return false; this.son = document.createElement("embed"); this.son.setAttribute("src", this.source); this.son.setAttribute("hidden", "true"); this.son.setAttribute("volume", this.volume); this.son.setAttribute("autostart", "true"); this.son.setAttribute("loop", this.loop); document.body.appendChild(this.son); } this.remove = function() { document.body.removeChild(this.son); this.finish = true; } this.init = function(volume, loop) { this.finish = false; this.volume = volume; this.loop = loop; } } اقتباس
السؤال
PhpMan
أريد برمجة لعبة ب html و Javascript ،أثناء اشتغال اللعبة أود تشغيل ملف صوتي ب Javascript ؟ كيف أفعل ذلك؟
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.