首页 > 解决方案 > 如何在 Chrome 中的 HTML 元素上获取动画()?

问题描述

我使用的是 Chrome 版本 67.0.3396.99(64 位)。

Web Animations API上的 Mozilla 文档描述了getAnimations()如下方法:

document.getAnimations().forEach(
  function (animation) {
    animation.playbackRate *= .5;
  }
)

但是 Chrome 似乎不支持它。我试过了……</p>

var animations = document.getAnimations ? document.getAnimations() : document.timeline.getAnimations();

…也根据 Daniel C. Wilson 的这篇文,但它在 Chrome 67 上中断并出现以下错误:

Uncaught TypeError: Cannot read property 'getAnimations' of undefined

有没有办法使用 web 动画 api 检索应用于 HTML 元素的动画数组?

标签: javascriptweb-animations

解决方案


请查看浏览器兼容性表...尚不支持。但它适用于Polyfill

//Corresponding blog post: https://danielcwilson.com/blog/2015/08/animations-part-3 

var a = document.querySelectorAll('div');
a = Array.prototype.slice.call(a);

a.forEach(function(el, i, ra) {
  var to = {
    x: Math.random() * (i % 2 === 0 ?-11 : 11),
    y: Math.random() * 12
  }
  
  el.animate([
    { transform: 'translate(0,0)' },
    { transform: 'translate('+to.x+'rem,'+to.y+'rem)' }
  ], {
    duration: (Math.random() + 1) * 2000,
    direction: 'alternate',
    fill: 'both',
    iterations: Infinity,
    easing: 'ease-in-out'
  });
});

var button = document.querySelector('input');

button.addEventListener('click', function(e) {
  //Get all the AnimationPlayers
  var players;
  if (typeof document.getAnimations === 'function') {
    players = document.getAnimations();
  } else {
    players = document.timeline.getAnimations();
  }
  if (players && players.length) {
    console.log(players);
    var action;
    if (players[0].playState === 'running') {
      action = 'pause';
    } else if (players[0].playState === 'paused') {
      action = 'play';
    } else {
      return;
    }
    players.forEach(function(player, i, ra) {
      player[action](); //player.pause() or player.play()
      
    });

    button.value = (action === 'play') ? 'Pause All' : 'Play All';
  } else {
    console.log('No active animations');
  }
});
body {
  background: #324242;
  color: #f3f3f8;
  text-align: center;
  overflow-x: hidden;
}

div {
  width: 1rem;
  height: 1rem;
  background: #f3f3f8;
  border-radius: 1rem;
  display: inline-block;
  margin: 1rem;
}

input {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  appearance: none;
  border: 2px solid #f3f3f8;
  border-radius: .4rem;
  color: #f3f3f8;
  background: #324242;
  line-height: 3;
  padding: 0 1rem;
  font-size: 1rem;
}
<script src="https://danielcwilson.com/js/web-animations-next-lite.min.js"></script>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>

<input type="button" value="Pause All">


推荐阅读