JavaScript判斷animation動畫執行完畢

admin發表於2017-04-15

分享一段程式碼例項,它實現了判斷animation執行完畢的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  margin: 0;
  padding: 0;
}
.rect {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #f80;
  text-align:center;
  line-height:100px;
  margin:0px auto;
}
@keyframes move {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
</style>
<script>
window.onload = function () {
  var _rect = document.querySelector(".rect");
  _rect.onclick = function () {
    _rect.style.animation = "move 3s";
  }
  _rect.addEventListener("webkitAnimationEnd", function () {
    this.innerHTML="螞蟻部落"
  }, false);
}
</script>
</head>
<body>
  <div class="rect"></div>
</body>
</html>

上面的程式碼實現了我們的要求,animationEnd事件可以實現判斷功能。

相關閱讀:

(1).@keyframes參閱CSS3 @keyframes一章節。

(2).transform: rotate()參閱transform: rotate()一章節。

(3).document.querySelector()參閱document.querySelector()一章節。

(4).animation參閱CSS3 animation一章節。

(5).addEventListener()參閱addEventListener()一章節。

(6).animationEnd參閱animationEnd事件一章節。

相關文章