var myMusic = null;
var MyMusic = function(){
var _this = this;
var musicBox_H = document.getElementById("musicBox");
var music = "音乐播放器/images/music/";
//音乐列表
var musicFiles=[
new MusicObj("祷告的勇士","/yinyue/儿童诗歌/19玛哈念儿童赞美/祷告的勇士.mp3","玛哈念儿童赞美",0,1),
new MusicObj("风车","/yinyue/儿童诗歌/19玛哈念儿童赞美/风车.mp3","玛哈念儿童赞美",0,1),
new MusicObj("风车_乐器","/yinyue/儿童诗歌/19玛哈念儿童赞美/风车_乐器.mp3","玛哈念儿童赞美",0,1),
new MusicObj("结圣灵的果子","/yinyue/儿童诗歌/19玛哈念儿童赞美/结圣灵的果子.mp3","玛哈念儿童赞美",0,1),
new MusicObj("朋友啊","/yinyue/儿童诗歌/19玛哈念儿童赞美/朋友啊.mp3","玛哈念儿童赞美",0,1),
new MusicObj("我的神是","/yinyue/儿童诗歌/19玛哈念儿童赞美/我的神是.mp3","玛哈念儿童赞美",0,1),
new MusicObj("我就是","/yinyue/儿童诗歌/19玛哈念儿童赞美/我就是.mp3","玛哈念儿童赞美",0,1),
new MusicObj("献上礼拜","/yinyue/儿童诗歌/19玛哈念儿童赞美/献上礼拜.mp3","玛哈念儿童赞美",0,1),
new MusicObj("要勇敢的说一声","/yinyue/儿童诗歌/19玛哈念儿童赞美/要勇敢的说一声.mp3","玛哈念儿童赞美",0,1),
new MusicObj("耶和华就是爱","/yinyue/儿童诗歌/19玛哈念儿童赞美/耶和华就是爱.mp3","玛哈念儿童赞美",0,1),
new MusicObj("主耶稣爱我","/yinyue/儿童诗歌/19玛哈念儿童赞美/主耶稣爱我.mp3","玛哈念儿童赞美",0,1),
new MusicObj("主耶稣真好","/yinyue/儿童诗歌/19玛哈念儿童赞美/主耶稣真好.mp3","玛哈念儿童赞美",0,1),
];
//播放模式 1-全部循环 2-单曲循环 3-随机播放
var playMode = 1;
//当前音乐播放的下标
var index = -1;
var length = musicFiles.length;
var playMode_H = $("#playMode");
var musicList_H = $("#musicList");
var playMsg_H = $("#playMsg");
var name = $("#name");
var author = $("#author");
var CD = $("#CD");
var picInfo = $("#picInfo");
var pop =$("#pop");
var playMsg = null;
_this.fristMusic = function(){
index = 0;
_this.play();
}
_this.playOrPause=function(){
pop.addClass("Gray");
var popVal = pop.attr("imgVal");
if(popVal == 0){
pop.attr("src","music/play.png");
pop.attr("title","点击播放");
pop.attr("imgVal","1");
musicBox_H.pause();
}else{
pop.attr("src","music/pause.png");
pop.attr("title","点击暂停");
pop.attr("imgVal","0");
musicBox_H.play();
}
}
_this.end = function(){
index = length -1;
_this.play();
}
_this.lastMusic = function(){
if(index == 0){
index = length-1;
}else{
index --;
}
_this.play();
}
_this.loadMusic = function(){
for(var i in musicFiles){
var html = ""+musicFiles[i].name;
if(musicFiles[i].hot == 1){
html+="
";
}
if(musicFiles[i].newSong == 1){
html+="
";
}
html+= "";
musicList_H.append(html);
}
};
_this.nextMusic = function(){
var currentMusic = null;
switch(parseInt(playMode)){
case 1:
index ++;
if(index>=length){
index = 0;
}
break;
case 2:
if(index == -1){
index = 0;
}
break;
case 3:
index = Math.floor(Math.random()*length);
break;
}
_this.play();
};
_this.loadInfo = function(){
name.text(musicFiles[index].name);
author.text(musicFiles[index].author);
CD.text(musicFiles[index].CD);
$('#showcode').attr("src","showcodes.php?name="+musicFiles[index].name);
picInfo.attr("src",musicFiles[index].people);
};
_this.play = function(){
currentMusic = musicFiles[index];
playMsg_H.text(musicFiles[index].name+"【"+musicFiles[index].author+"】");
$(musicBox_H).attr("src",musicFiles[index].url);
$("#musicList").children().each(function(i){
$($("#musicList").children().get(i)).removeClass("liOn");
});
$($("#musicList").children().get(index)).addClass("liOn");
_this.loadInfo();
musicBox_H.play();
};
_this.init = function(){
_this.loadMusic();
var songheight = $("#songs").height();
$("#infos").css("height",songheight+"px");
playMode_H.change(function(){
playMode = playMode_H.val();
});
};
}
$().ready(function(){
myMusic = new MyMusic();
myMusic.init();
myMusic.nextMusic();
});
//音乐对象
function MusicObj(name,url,author,cd,people,hot,newSong){
var _this = this;
this.name = name;
this.url = url;
this.author = author;
this.CD = cd;
this.people = people;
this.hot = hot;
this.newSong= newSong;
}