2

抱歉,如果这似乎是一个显而易见的答案,但我正在尝试创建一个类似于this的动画。我正在尝试使用 react-three-fiber 创建一个类似的,但我不能使用文档中显示的那些,因为它们操纵了使用three.js 无法实现的样式转换属性。我试图通过位置属性和道具来操纵它,但它带有一个错误,如此处所示我真的不知道从哪里开始解决这个问题。这是我的代码:

const props = useSpring({
    to: async next => {
      await next({ position: [100, 100, 100] });
      await next({ position: [50, 50, 50] });
    },
    from: { position: [100, 100, 100] },
    config: { duration: 3500 },
    reset: true
  });

 return (
    <Canvas>

      <a.group {...props}>
        <Box position={[-1.2, 0, 0]} />
        <Box position={[1.2, 0, 0]} />
      </a.group>
    </Canvas>

)

我已经通过悬停和缩放成功使用了 react-spring,但是在使用位置时它不起作用。

4

1 回答 1

3

我认为最好用三角函数来完成类似的事情

const ref = useRef()
useFrame(() => {
  ref.current.position.y = Math.sin(state.clock.getElapsedTime()) * 10
})
return <group ref={ref}> ...

Math.sin 将产生一个介于 -1 到 1 之间的值,并在两者之间平滑交替。乘以你的因子(距离),你就有了。这是一个像这样移动相机的示例:https ://codesandbox.io/s/r3f-lod-e9vpx

否则它是 react-spring/three,而不是 react-spring:https ://codesandbox.io/s/clever-bartik-tkql8

于 2020-04-30T08:43:34.223 回答