https://github.com/lavrton/react-konva
如何翻转图像(水平或垂直) 我正在使用此功能,但它无法正常工作:
flip = direction => {
this.setState({
width: -this.state.width
})
}
答案 0 :(得分:2)
最好使用scale属性:
<Image image={this.state.image} scaleY={-1} y={200}/>
因此,在您所在的州,您应该将scale
属性存储为1或-1值,