- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 HTML:
<audio autoplay id="background_audio">
<source src="https://sporedev.ro/pleiade/hol.mp3" type="audio/mpeg">
</audio>
上面的代码在后台播放一些音乐。
<audio autoplay>
<source src="https://sporedev.ro/pleiade/sounds/swoosh-enter.mp3" type="audio/mpeg">
</audio>
此代码在用户进入页面时播放旋风声音。
我有以下 JS:
<script>
var audio = document.getElementById('background_audio');
document.getElementById('mute').addEventListener('click', function (e)
{
e = e || window.event;
audio.muted = !audio.muted;
e.preventDefault();
}, false);
</script>
该代码用于当用户点击某个div时使背景音乐静音。
这是一个JSFiddle .
我正在从事的项目的链接是 here .
我正在尝试创建一个脚本,该脚本在一定秒数之前不会播放位于 background_audio
id 中的audio
(例如,5秒)已经过去了,以便在开始音乐之前,嗖嗖声可以完成播放。
我对 SO 和 Google 进行了一些研究,并得出结论,使用 preventDefault()
可能是解决方案,但我未能实现该解决方案。
如何在 swoosh 声音播放完毕后制作 background_audio
id 中的音乐?
最佳答案
您可以使用onend
events ,在第一个音频结束后播放第二个音频。
var audio1 = document.getElementById("another_audio");
audio1.onended = function() {
console.log('Playing background audio')
var audio2 = document.getElementById("background_audio");
audio2.play();
};
<audio id="background_audio">
<source src="https://sporedev.ro/pleiade/hol.mp3" type="audio/mpeg">
</audio>
<audio autoplay id="another_audio">
<source src="https://sporedev.ro/pleiade/sounds/swoosh-enter.mp3" type="audio/mpeg">
</audio>
关于javascript - 第一个音频播放完毕后播放第二个音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50040389/
我搜索了很多东西,比如: How to show icon blinking on google map 但是根据这个我没有找到如何让通知图标闪烁 我想在这个上闪烁图标 int icon = R.d
我很想知道我是否可以删除或更改 android 在选项卡布局下方提供的类似 drop-shadow 的效果。 最佳答案 我一问这个问题,我就在另一个stackoverflow post中得到答案.无论
我必须通过 AlaramManager 调用我的 BroadcastReceiver。 为此,我所做的不起作用: AlarmActivity.java public class AlarmActivi
我正在尝试执行以下操作: CPU_COUNT=$(cat /proc/stat | grep -E "^cpu[[:digit:]]+ " | wc -l) let CPU_COUNT=CPU_COU
我是一名优秀的程序员,十分优秀!