有时候当我们在做一种网页的时候。需要用到背景音乐,怎料到有的浏览器根本就播放不了,那么什么样的js代码能实现这种兼容的功能呢?不是没有下面小编就和大家分享一下能兼容各种浏览器的背景音乐循环播放的js代码。
var bgSoundFile = " if (navigator.userAgent.toLowerCase().indexOf("msie") != -1) { document.write('<bgsound src="' + bgSoundFile + '" loop="-1">'); } else if (navigator.userAgent.toLowerCase().indexOf("firefox") != -1) { document.write('<object data="' + bgSoundFile + '" type="application/x-mplayer2" width="0" height="0"><param name="filename" value="' + bgSoundFile + '"> <param name="autostart" value="1"><param name="playcount" value="infinite"> </object>');} else { document.write('<audio src="' + bgSoundFile + '" autoplay="autoplay" loop="loop"> <object data="' + bgSoundFile + '" type="application/x-mplayer2" width="0" height="0"> <param name="filename" value="' + bgSoundFile + '"><param name="autostart" value="1"> <embed height="2" width="2" src="' + bgSoundFile + '" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" controller="false" controls="false" autoplay="true" autostart="true" loop="true" bgcolor="#000000"> </embed> </object> </audio>'); }
以上就是能实现兼容各种浏览器的背景音乐循环播放的js代码,也许以后能用的到呢,赶紧收藏起来吧。
相关推荐:
Atas ialah kandungan terperinci 实现兼容各种浏览器的音乐播放js代码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!