Chrome 75, break transform-origin animation

偶尔善良 提交于 2021-02-08 10:02:10

问题


I found possible issue(or may be it is feature =)) in chrome 75 version. Changes of transform origin during of transform animation doesn't affect on animation. I attached snipet which contains two loops, one changed transform, another changed transform origin.

For example:

In changelog for 75 version I found this commit which probably related to this issue: commit

const div = document.getElementById('div');
const stat1 = document.getElementById('stat1');
const stat2 = document.getElementById('stat2');

// change transform
(function loop(x = true) {
  requestAnimationFrame(() => {
    div.style.transform = x ? 'scale(2)' : 'scale(1)';

    stat1.innerText = div.style.transform;
    stat2.innerText = div.style.transformOrigin;
  });

  setTimeout(loop, 2000, !x);
})();

// change transform origin
(function loop2(x = 0, d = true) {
  div.style.transformOrigin = `${x}% ${x}%`;
  stat3.innerText = div.style.transformOrigin;

  const xx = x + (d ? 1 : -1);
  setTimeout(loop2, 100, xx, xx > 0 && xx < 100 ? d : !d);
})();
#div {
  transform: scale(1);
  transition: transform 4s ease 0s;
}

/* not important */

#div {
  background: green;
  opacity: 0.5;
}

#div2 {
  background: grey;
  color: white;
  text-align: center;
}

#div, #div2 {
  position: absolute;
  top: 80px;
  left: 80px;
  
  width: 80px;
  height: 80px;
}
<div id="div2">
  <span id="stat1"></span><br/>
  <span id="stat2"></span><br/>
  <span id="stat3"></span>
</div>
<div id="div"></div>

来源:https://stackoverflow.com/questions/57000539/chrome-75-break-transform-origin-animation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!