我希望有人可以向我展示如何使这种反应模式移动响应。它没有使用引导程序。
<ReactModal
isOpen={this.state.showModal}
style={{
overlay: {
position: 'fixed',
top: 0,
left: 0,
right: 0,
bottom: 0,
backgroundColor: 'rgba(0, 0, 0, 0.5)'
},
content: {
position: 'absolute',
top: 'auto',
marginLeft: '70px',
marginRight: '70px',
bottom: '200px',
border: '1px solid #ccc',
background: '#000',
overflow: 'auto',
WebkitOverflowScrolling: 'touch',
borderRadius: '10px',
outline: 'none',
padding: '20px'
}
}}>