如何使用react-motion更改背景图像并循环显示一堆图像?

时间:2016-09-23 18:15:32

标签: reactjs react-motion

我正在使用react-motion来循环遍历一堆图像。我试图在一段时间后以编程方式进行背景更改。

1 个答案:

答案 0 :(得分:0)

组件渲染应该是这样的。运动和弹簧来自“反应运动”包。查看code for the photo demo了解更多详情。

<Motion style={{height: spring(currHeight), width: spring(currWidth)}}>
  {container =>
    <div className="demo4-inner" style={container}>
      {configs.map((style, i) =>
        <Motion key={i} style={style}>
          {style =>
            <img className="demo4-photo" src={`./${i}.jpg`} style={style} />
          }
        </Motion>
      )}
    </div>
  }
</Motion>