对于我正在构建的小应用程序,我需要连续两个按钮。由于appliation建立在reactjs上,我正在使用react-bootstrap。
整个过程在桌面上运行良好,但在移动设备上,最后两个按钮会相互移动,如下所示:
当最后两列包含按钮时,似乎只会出现此问题。
最后两个列的代码:
<Reactbootstrap.Row>
// Other elements have been ommitted.
<ReactBootstrap.Col xs={1} className="no-padding text-center">
<SyncButton updatePins={this.updatePins} syncing={this.state.syncing} synced={this.state.synced}/>
</ReactBootstrap.Col>
<ReactBootstrap.Col xs={1} className="no-padding">
<SyncStatus synced={this.state.synced}/>
</ReactBootstrap.Col>
</ReactBootstrap.Row>
按钮的代码:
export var SyncStatus = React.createClass({
render () {
return (
<ReactBootstrap.Button bsStyle={this.props.synced && "success" || "danger"} disabled>
<b className={this.props.synced && "fa fa-check" || "fa fa-times"}></b>
</ReactBootstrap.Button>
);
}
});
export var SyncButton = React.createClass({
onClick () {
this.props.updatePins();
},
render () {
return (
<ReactBootstrap.Button bsStyle="info" onClick={this.onClick} disabled={this.props.synced || this.props.syncing}>
<b className={this.props.syncing && "fa fa-refresh fa- spin" || "fa fa-exchange fa-rotate-90"}></b> SYNC
</ReactBootstrap.Button>
)
},
});
有谁知道如何解决这个问题?
答案 0 :(得分:1)
您按下按钮的列没有足够的空间在移动设备上显示它们。它是一个xs = {1},它在768px的移动设备上只有34px宽。你应该重新考虑你的设计,以便使用bootstrap responsive grid functionality提高响应能力。