我开发了一个简单的音乐网站,比如rainymood.com。
<audio controls autoplay hidden="true" loop="loop">
<source src="rainsound.ogg" type="audio/ogg">
Your browser does not support the audio element.
</audio>
我的解决方案是在IDM中关闭Firefox中的选项下载。但是,我想知道如何通过编辑上面代码来解决此问题,以
我正在建设一个在Angular的音乐网站,在那里用户可以在一个洗牌按钮的点击洗牌歌曲。我可以在下面的代码中使用shuffle:
var shuffleArray = function(array) {
var m = array.length, t, i;
// While there remain elements to shuffle
while (m) {
// Pick a remaining element…
i = Math.floor(Math.random() * m--);
// And swap it