1

我正在使用 react-spring 尝试使用 Transition 组件创建一个动画,当组件中的道具发生变化时,该组件会淡出然后重新加入。

通过查看文档,我了解到这可以通过使用 Transition 组件中的“update”道具来实现。

然而,这似乎只是设置了一个永远不会改变的值(当道具改变时,不透明度设置为 0.5)。我不明白如何使用它来淡出 Slave 组件并在道具更改时将其淡出。

过渡组件:

<div className="panel-with-sidepane__slave">
  <Transition
    native
    from={{ opacity: 0 }}
    enter={{ opacity: 1 }}
    leave={{ opacity: 0 }}
    update={{ opacity: 0.5 }}
    to={{ opacity: 1 }}
  >
    {styles => {
      return (
        <Slave
          style={styles}
          SlaveComponent={SlaveComponent}
          isMobile={isMobile}
          setWrapperRef={this.props.setWrapperRef}
          onFocus={this.props.onFocus}
          onBlur={this.props.onBlur}
          fallbackTxt={fallbackTxt}
          activeRowIndex={activeRowIndex}
        />
      )
    }
    }
  </Transition>
</div>

组件在返回更改/道具更改时进行动画处理:

const Slave = ({
  activeRowIndex,
  fallbackTxt,
  isMobile,
  onBlur,
  onFocus,
  setWrapperRef,
  SlaveComponent,
  style
}) => {
  if (!isMobile && typeof activeRowIndex === 'number') {
    return (
      <animated.div
        style={style}
        ref={ref => setWrapperRef(ref)}
        onFocus={onFocus}
        onBlur={onBlur}
        className="panel-with-sidepane__slave__animation-container"
      >
        {SlaveComponent}
      </animated.div>
    )
  } else if (!isMobile && typeof activeRowIndex === 'undefined') {
    return <div style={style} className="panel-with-sidepane__slave__animation-container panel-with-sidepane__fallback">{fallbackTxt}</div>
  }
}

SCSS

.panel-with-sidepane__slave {
  position: relative;
  ...redacted
}

.panel-with-sidepane__slave__animation-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

场景一:

  1. 不同的 SlaveComponent 道具作为道具传递给从属组件。
  2. 预计这会触发更新、淡出和淡入。

场景二:

  1. 从站的返回条件变化
  2. 预计这会淡出第一个返回组件并淡入另一个。
4

1 回答 1

0

react-spring 6 使这更容易一些,因为现在过渡可以是链(字面意思是一个接一个运行的动画数组):http ://react-spring.surge.sh/transition您还可以使用插值范围这个,见:http ://react-spring.surge.sh/perf#interpolation

于 2018-10-26T09:14:08.713 回答