var myMusic = null; var MyMusic = function(){ var _this = this; var musicBox_H = document.getElementById("musicBox"); var music = "音乐播放器/images/music/"; //音乐列表 var musicFiles=[ new MusicObj("爱情","/yinyue/宣教前锋/活得精采/爱情.mp3","宣教前锋",0,1), new MusicObj("爱自己","/yinyue/宣教前锋/活得精采/爱自己.mp3","宣教前锋",0,1), new MusicObj("告诉我","/yinyue/宣教前锋/活得精采/告诉我.mp3","宣教前锋",0,1), new MusicObj("活得精彩","/yinyue/宣教前锋/活得精采/活得精彩.mp3","宣教前锋",0,1), new MusicObj("让爱在你我之间","/yinyue/宣教前锋/活得精采/让爱在你我之间.mp3","宣教前锋",0,1), new MusicObj("向前走","/yinyue/宣教前锋/活得精采/向前走.mp3","宣教前锋",0,1), new MusicObj("要把握现在","/yinyue/宣教前锋/活得精采/要把握现在.mp3","宣教前锋",0,1), new MusicObj("一台好戏","/upload/url/201404081327181748481.mp3","宣教前锋",0,1), new MusicObj("这里有爱","/yinyue/宣教前锋/活得精采/这里有爱.mp3","宣教前锋",0,1), new MusicObj("挣脱","/yinyue/宣教前锋/活得精采/挣脱.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 = "