我有一个有效的随机歌曲生成器,它有一个可以播放和暂停的按钮,还有一个随机化歌曲的按钮。我通过rand
和s
变量执行此操作,这不是最好的方法,但它有效。我想要显示按钮,以显示该歌曲被按下时的内容,但我不知道该怎么回事,有人可以帮忙吗?
HTML:
<audio id="1st" >
<source src="intervals/1st.mp3" type = "audio/mp3"/>
</audio>
<audio id="2nd" >
<source src="intervals/2nd.mp3" type = "audio/mp3"/>
</audio>
<audio id="3rd">
<source src="intervals/3rd.mp3" type= "audio/mp3"/>
</audio>
<audio id="4th">
<source src="intervals/4th.mp3" type= "audio/mp3"/>
</audio>
<audio id="5th">
<source src="intervals/5th.mp3" type= "audio/mp3"/>
</audio>
<audio id="6th">
<source src="intervals/6th.mp3" type="audio/mp3" />
</audio>
<audio id="7th">
<source src="intervals/7th.mp3" type="audio/mp3" />
</audio>
<button type="button" id="reveal">Reveal</button>
<button type="button" id="playButton"></button>
<button type="button" id="randomise"></button>
JavaScript的:
var playButtonJS = document.getElementById('playButton');
var randomiseJS = document.getElementById('randomise');
var revealJS = document.getElementById("reveal");
var FstJS = document.getElementById('1st');
var SndJS = document.getElementById('2nd');
var TrdJS = document.getElementById('3rd');
var FOthJS = document.getElementById('4th');
var FIthJS = document.getElementById('5th');
var SIthJS = document.getElementById('6th');
var SEthJS = document.getElementById('7th');
var audioPlaying = [FstJS, SndJS, TrdJS,FOthJS, FIthJS, SIthJS, SEthJS];
var rand = audioPlaying[Math.floor(Math.random() * audioPlaying.length)];
playButtonJS.addEventListener('click', playOrPause, false);
randomiseJS.addEventListener('click', random, false);
revealJS.addEventListener('click', rev, false);
function random() {
rand.pause();
playButtonJS.style.backgroundImage = 'url(playbutton.svg)';
var song = audioPlaying[Math.floor(Math.random() * audioPlaying.length)];
playButtonJS.style.backgroundImage = 'url(pausebutton.png)';
songf(song);
}
function songf(s) {
rand.currentTime=0;
rand = s;
if (!s.paused && !s.ended) {
s.pause();
playButtonJS.style.backgroundImage = 'url(playbutton.svg)';
}
else {
s.play();
playButtonJS.style.backgroundImage = 'url(pausebutton.png)';
}
}
function playOrPause() {
if (!rand.paused && !rand.ended) {
rand.pause();
playButtonJS.style.backgroundImage = 'url(playbutton.svg)';
}
else {
rand.play();
playButtonJS.style.backgroundImage = 'url(pausebutton.png)';
}
}
答案 0 :(得分:1)
JQuery解决方案:
为您的rand变量分配您正在播放的歌曲的索引的数值,而不是从数组中选择的数据的值。或者将中间变量设为&#39; selectedindex&#39;。 为什么?因为数字可以帮助您在这里引用特定数据。
然后决定如何将信息提供给用户。
想象一下,你为每个歌曲标签添加了一些标签<h2 id="name1">Name of the song</h2>...<h2 id ="name6">...
。
最初使用display:none;
。
你可以做类似
function reveal () {
$("#name+rand").style.display = "block";
console.log('You are playing the song number', rand)
}
如果您更喜欢使用公共容器/ div / h2来提供信息,则可以使用以下内容替换内部HTML:
$("#label").html('Song is the number: '+ selectedIndex);
不使用JQuery翻译:
document.getElementById("label").innerHTML = "Song is number" +
String(selectedIndex);
或者使用该号码从一系列名称中提供歌曲的名称。
$("#label").html('Song is:'+ ArrayOfNames[selectedIndex]);
不使用JQuery翻译:
document.getElementById("label").innerHTML = "Song is" +
ArrayOfNames[selectedIndex];
编辑:如果您要添加此类功能,我建议您使用JQuery。
答案 1 :(得分:0)
将以下代码行添加到您处理所播放音乐的更改的任何位置。用相关的html标签id和歌曲名称替换“songTitle”。
document.getElementById("songTitle").innerHTML = "New song name";
https://www.w3schools.com/jsref/prop_html_innerhtml.asp
希望这会有所帮助。 :)
答案 2 :(得分:0)
var songNames = ["songName_1", "songName_2", "songName_3", "songName_4"];
function randomSong() {
var songName = arguments[0][randomNum(0, songNames.length - 1)];
document.getElementById("songName").innerHTML = songName;
}
document.getElementById("randomSong").addEventListener("click", function() {
randomSong(songNames);
})
function randomNum(minNum, maxNum) {
switch (arguments.length) {
case 1:
return parseInt(Math.random() * minNum + 1, 10);
break;
case 2:
return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10);
break;
default:
return 0;
break;
}
}
<h2 id="songName"></h2>
<input id="randomSong" type="button" value="randomSong!" />
这就是我理解兄弟的意思,你的代码真的有点乱,如果有问题你可以问我。
我有更好的解决方案,但现在我在工作,后来发给你了。