停止之后无法播放。
优化:
music.onclick = function () {
if (audo.ended) { // 如果结束了 再重新播放 动画重新添加上
audo.play();
this.setAttribute("class", "play");
} else {正常的点击逻辑}
}
}
优化:
music.onclick = function () {
if (audo.ended) { // 如果结束了 再重新播放 动画重新添加上
audo.play();
this.setAttribute("class", "play");
} else {正常的点击逻辑}
}
}
2016-11-24
最赞回答 / rookie_r
<...code...><!DOCTYPE html><!-- saved from url=(0038)http://www.imooc.com/activity/project1 --><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content...
2016-11-24