为什么此动画不正确?

时间:2019-01-28 16:11:02

标签: css animation css-transitions css-transforms

我正在尝试使用隐藏行来实现一个表(此刻基于CSS-grid)。单击某处后,该行应平滑扩展。我希望该行的内容在动画过程中可见并保留其正确大小

这与this demo非常相似,但是我没有实现菜单。但是我希望在演示中,内容(“菜单项1”,“菜单项2”,...)在动画过程中具有恒定大小。

我想使用FLIP technique as described here来实现这一点,以轻松实现高帧率。

我在行中添加了scaleY(0.01),在内部包装器中添加了scaleY(100),希望它们能抵消并保持规模。我还添加了transform-origin: 0 0,希望动画行的顶部边缘在动画过程中保持在同一位置。

但是,发生的事情是里面的内容最初太高了。即使当我设置transform-origin: 0 0时,它们也似乎沿Y轴移动(但这可能只是高度不正确的结果)。

我尝试使用Element.animate()和手动element.style.transform = ...方法,但无济于事。

我的问题:为什么隐藏的行没有正确设置动画(其内容的高度不是恒定的,并且似乎沿Y轴移动)?该如何解决?

let collapsed = Array.from(document.querySelectorAll(".collapsed"));

collapsed.forEach((row, idx) => {
  row.dataset["collapsedIdx"] = idx;
  document.querySelector("label").addEventListener("click", () => {
    let collapsedSelf = row.getBoundingClientRect();
    let rowsBelow = Array.from(
      row.parentElement.querySelectorAll(`[data-collapsed-idx='${idx}'] ~ *`)
    );

    row.classList.remove("collapsed");
    let expandedSelf = row.getBoundingClientRect();
    let diffY = expandedSelf.height - collapsedSelf.height;

    let animationTiming = {
      duration: 2000,
      easing: "linear"
    };

    let wrapper = row.querySelector(":scope > *");

    row.animate(
      [{ transform: `scaleY(0.01)` }, { transform: `scaleY(1)` }],
      animationTiming
    );

    wrapper.animate(
      [{ transform: `scaleY(100) ` },
       { transform: `scaleY(1) ` }],
      animationTiming
    );

    rowsBelow.forEach((rowBelow) => {
      rowBelow.animate([
        { transform: `translateY(-${diffY}px)` },
        { transform: `translateY(0)` }
      ], animationTiming);
    });
  });
});
* {
  box-sizing: border-box;
}

section {
  display: grid;
  grid-template-columns: max-content 1fr;
}

.subsection {
  grid-column: span 2;
}

label, p {
  display: block;
  margin: 0;
}

.collapsible,
.collapsible > * {
  transform-origin: 0 0;
  will-change: transform;
  contain: content;
}

.collapsed {
  height: 0;
  overflow: hidden;
}

/* .collapsed {
  transform: scaleY(.2);
}

.collapsed > * {
  transform: scaleY(5)
}

*:nth-child(8),
*:nth-child(9),
*:nth-child(10),
*:nth-child(11),
*:nth-child(12) { transform: translateY(-35px); }

  */

/* .animate-on-transforms {
  transition: transform 2000ms linear;
} */
<section>
    <label><strong>CLICK ME!!!</strong></label>
    <p>Value 1</p>

    <label>Row 2</label>
    <p>Value 2</p>

    <label>Row 3</label>
    <p>Value 3</p>
    <div class="subsection collapsible collapsed">
      <section>
        <label>Subrow 1</label>
        <p>Subvalue 1</p>

        <label>Subrow 2</label>
        <p>Subvalue 2</p>

        <label>Subrow 3</label>
        <p>Subvalue 3</p>

        <label>Subrow 4</label>
        <p>Subvalue 4</p>

      </section>
    </div>

    <label>Row 4</label>
    <p>Value 4</p>

    <label>Row 5</label>
    <p>Value 5</p>

</section>

1 个答案:

答案 0 :(得分:1)

我认为这里的问题是插值。您假设在动画的每个步骤中,我们将始终在scale(x)中有scale(1/x)x,其中[0,1],但是由于四舍五入,我认为您不会拥有

这是一个基本示例:

.box,
p{
 transform-origin:0 0;
 transition:1s linear;
}
.box:hover {
  transform:scale(0.1);
}
.box:hover p{
  transform:scale(10);
}
<div class="box">
<p>
Lorem Ipsume<br>
Lorem Ipsume<br>
Lorem Ipsume<br>
Lorem Ipsume<br>
Lorem Ipsume<br>
</p>
</div>

从逻辑上讲,我们可能会认为文本将保持不变,但不会。它将增长然后再次收缩。因此,是的,比例将被取消,但不会随动画一起改变。