heartAnimation

功能描述

按钮点击爆炸特效,用例参见 heartAnimation.html

依赖的模块

  1. ./heartAnimation.css

快速使用

首先引入css文件

  1. <link rel="stylesheet" type="text/css" href="heartAnimation.css" />

在需要使用的地方加上以下代码

  1. <div class="heart" id="like"></div>

然后加个点击事件,就可以实现效果

  1. <script>
  2. document.getElementById('like').onclick = function() {
  3. this.style.backgroundPosition = "";
  4. if(this.getAttribute('class').indexOf('heartAnimation') > -1) {
  5. this.classList.remove("heartAnimation");
  6. this.style.backgroundPosition = 'left';
  7. } else {
  8. this.classList.add("heartAnimation");
  9. }
  10. }
  11. </script>