react-iscroll icon indicating copy to clipboard operation
react-iscroll copied to clipboard

Can't scroll if I add the image tag into the scroll wrapper

Open cnt1992 opened this issue 9 years ago • 0 comments

Just like the title , when I type the code like this:

<ReactIScroll iScroll={iScroll}
                        options={iScrollOptions}
                        onRefresh={this._handleScrollRefresh}
                        onScrollStart={this._handleScrollStart}
                        probeType={2}
                        onScrollEnd={this._handleScrollEnd}>                        
  <div style={{width: "100%"}}>
    <ul>
      <li><img src="xxx" alt=""/></li>
      <li><img src="xxx" alt=""/></li>
      <li><img src="xxx" alt=""/></li>
    </ul>
  </div>
</ReactIScroll>

and then I can't scroll, could you tell me how to fixed it? thx

cnt1992 avatar Jan 22 '17 07:01 cnt1992