我使用facebooks fixedDataTable来显示股票仪表板。我需要实现的是基于价格变化的闪存固定数据表格单元格(比如价格列)绿色或红色。我们如何在固定数据表中实现动画?
答案 0 :(得分:1)
您可以使用数据表<Cell>
的子组件中的css执行此操作。类似的东西:
componentWillReceiveProps(nextProps) {
// if the price has changed, add a class to do some animation stuff
if (nextProps.price != this.props.price) {
this.setState( className: "fancy-flash-class-in" );
}
}
componentDidUpdate() {
// after the component has updated, set the class back
if (this.state.className == "fancy-flash-class-in") {
setTimeout(() = > this.setState(
{className: "fancy-flash-class-out"}),
500);
}
}
componentDidUpdate()
被称为非常快,因此您将执行setTimeout
,否则动画将无效。
在css中,您可以添加动画:
所以在你的css文件中:
.fancy-flash-class-out {
background-color: grey;
transition: background-color 2s;
-webkit-transition: background-color 2s; /* Safari */
}
简单演示codepen here