我正在使用 bootstrap 4 导航栏,并想在 ig 400px 向下滚动后更改背景颜色。我正在查看 react 文档并找到了一个 onScroll 但找不到关于它的太多信息。到目前为止我有...
我不知道我是否使用了正确的事件侦听器或如何设置高度等。
而且我并没有真正设置内联样式...
import React, { Component } from 'react';
class App extends Component {
constructor(props) {
super(props);
this.state = { scrollBackground: 'nav-bg' };
this.handleScroll = this.handleScroll.bind(this);
}
handleScroll(){
this.setState ({
scrollBackground: !this.state.scrollBackground
})
}
render() {
const scrollBg = this.scrollBackground ? 'nav-bg scrolling' : 'nav-bg';
return (
<div>
<Navbar inverse toggleable className={this.state.scrollBackground}
onScroll={this.handleScroll}>
...
</Navbar>
</div>
);
}
}
export default App;