を発射ない反応して、私はそのコンポーネントにイベントをonScroll設定が、私はそれががonScroll私はコンポーネントをシンプルに反応している
import React, { Component, PropTypes } from 'react'
export default class MyComponent extends Component {
_handleScroll(e) {
console.log('scrolling')
}
render() {
const style = {
width: '100px',
height: '100px',
overflowY: 'hidden'
}
const innerDiv = {
height: '300px',
width: '100px',
background: '#efefef'
}
return (
<div style={style} onScroll={this._handleScroll}>
<div style={innerDiv}/>
</div>
)
}
}
これはおそらくこれを助けます:http://stackoverflow.com/questions/29725828/update-style-of-a-component-onscroll-in-react-js –