美文网首页
css3 动画的播放、暂停和重新开始

css3 动画的播放、暂停和重新开始

作者: yangrenmu | 来源:发表于2017-06-06 16:57 被阅读0次

    播放

    先在@keyframes中创建动画,之后把它捆绑到某个选择器,就可以产生动画效果。
    <code>html</code>

    <div id="box" class="box"></div> 
    

    <code>css</code>

    @keyframes mymove {
        0% {
          margin-left: 0px;
        }
        50% {
          margin-left: 400px;
        }
        100% {
          margin-left: 0px;
        }
      }
    .box {
        margin: 50px 0;
        width: 100px;
        height: 100px;
        background-color: #5578a2;
        animation: mymove 5s infinite ease;
      }
    

    暂停

    我们播放动画时,如要暂停动画,就要用到<code>animation-play-state</code>这个属性。<code>animation-play-state</code>属性有两个值:

    paused: 暂停动画;
    running: 继续播放动画;
    

    当然去掉<code>animation-play-state</code>,也可以继续播放动画。

    重新开始

    如果要重新开始动画,加载一个相同的动画,不同名字,可以达到重新开始动画的效果。
    效果:

    效果图

    代码部分:

    <code>html</code>

    <div id="box" class="box"></div>
      <p id="text"></p>
      <div class="control">
        <button id="play" value="播放">播放</button>
        <button id="pause" value="暂停">暂停</button>
        <button id="restart" value="重新开始">重新开始</button>
      </div>
    

    <code>css</code>

    @keyframes mymove {
        0% {
          margin-left: 0px;
        }
        50% {
          margin-left: 400px;
        }
        100% {
          margin-left: 0px;
        }
      }
      @keyframes mymove1 {
        0% {
          margin-left: 0px;
        }
        50% {
          margin-left: 400px;
        }
        100% {
          margin-left: 0px;
        }
      }
      .box {
        margin: 50px 0;
        width: 100px;
        height: 100px;
        background-color: #5578a2;
      }
      .play {
        animation: mymove 5s infinite ease;
      }
      .restart {
        animation: mymove1 5s infinite ease;
      }
      .pause {
        animation-play-state: paused;
      }
    

    <code>js</code>

    var play = document.getElementById('play'),
        pause = document.getElementById('pause'),
        restart = document.getElementById('restart'),
        text = document.getElementById('text'),
        box = document.getElementById('box');
      pause.addEventListener('click', function() {
        if (box.classList.contains('play')) {
          box.className = 'pause play box';
        } else {
          box.className = 'pause restart box';
        }
        text.innerHTML = this.value;
      });
      play.addEventListener('click', function() {
        if (box.classList.contains('play')) {
          box.className = 'play box';
        } else {
          box.className = 'restart box';
        }
        text.innerHTML = this.value;
      });
      restart.addEventListener('click', function() {
        if (box.classList.contains('play')) {
          box.className = 'restart box';
        } else {
          box.className = 'play box';
        }
        text.innerHTML = this.value;
      });
    

    相关文章

      网友评论

          本文标题:css3 动画的播放、暂停和重新开始

          本文链接:https://www.haomeiwen.com/subject/hfsgfxtx.html