音樂圖標單擊停止和點擊換頁的效果出不來
window.onload=function(){
var page1=document.getElementById("page1");
var page2=document.getElementById("page2");
var page3=document.getElementById("page3");
var music = document.getElementsByClassName("music");
var audio = document.getElementsByTagName("audio")[0];
music.addEventListener("touchstart",function(event){
if(audio.paused){
audio.play();
this.setAttribute("class,","play");
//this.style.animationPlayState = "running";
}else{
audio.pause();
this.setAttribute("class","");
//this.style.animationPlayState = "pasued";
};
},false);
page1.addEventListener("touchstart",function(event){
page1.style.display="none";
page2.style.display="block";
page3.style.display="block";
page3.style.top="100%";
setTimeout(function(){
page2.setAttribute("class","page fadeOut");
page3.setAttribute("class","page fadeIn");
},5500);
},false);
};
2020-02-09
可以參考下我的作品,在老師的基礎上我做了優化:
1、音樂停止與播放時圖標指針變化
?2、第二頁倒計時顯示
?3、展示到第三頁的時候綁定上拉下滑翻頁。
github:https://github.com/ar414-com/html5cards?
效果鏈接:https://ar414-com.github.io/html5cards/(覺得有幫助可以start一下唄)