标签:div https log city 属性 logs 最好 nbsp ring
https://www.runoob.com/html/html-sounds.html
audio播放音乐
下面的例子使用了两个不同的音频格式。HTML5 <audio> 元素会尝试以 mp3 或 ogg 来播放音频。如果失败,代码将回退尝试 <embed> 元素。
<audio id="audio" height="100" width="100" style="opacity:0" preload="auto" controls hidden="true"> <source src="../assets/audio/cheering.mp3" type="audio/mpeg" /> <source src="../assets/audio/cheering.ogg" type="audio/ogg" /> <embed height="50" width="100" src="../assets/audio/cheering.mp3" /> </audio>
页面加载加载音乐但是不播放,通过调用这段代码:
let myAuto = document.getElementById(‘audio‘)
myAuto.play()
其它属性解释:
转载于:https://www.cnblogs.com/mochaMM/p/7118875.html
标签:div https log city 属性 logs 最好 nbsp ring
原文地址:https://www.cnblogs.com/itcast-guoke/p/14177572.html