老师讲解的非常好,看着视频讲解,跟着老师讲的步骤一步一步做下去,学到了很多东西,非常感谢!!!目前已经完成了,代码已上传至github上,使用的hbuilder编辑器进行代码编写的,(hbuilder这个IDE可以直接创建手机APP应用)手机连上电脑,可以直接在手机上运行,github地址:git@github.com:hu1991die/greetingCard.git
2016-02-20
music.addEventListener("touchstart", function(event){
if(audio.paused){
audio.play();
this.setAttribute("class","play");
}else{
audio.pause();
this.setAttribute("class","");
}
}, false);
if(audio.paused){
audio.play();
this.setAttribute("class","play");
}else{
audio.pause();
this.setAttribute("class","");
}
}, false);
2016-02-19