Taro+react开发(35) 实现拖动

Posted 小歌谣(公众号同名)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Taro+react开发(35) 实现拖动相关的知识,希望对你有一定的参考价值。

         <View>
            <ScrollView
              className="scrollview"
              scrollY
              scrollWithAnimation
              scrollTop={scrollTop}
              style={scrollStyle}
              lowerThreshold={Threshold}
              upperThreshold={Threshold}
              onScrollToUpper={this.onScrollToUpper.bind(this)} // 使用箭头函数的时候 可以这样写 `onScrollToUpper={this.onScrollToUpper}`
              onScroll={this.onScroll}
            >
              <View style={vStyleA}>A</View>
              <View style={vStyleB}>B</View>
              <View style={vStyleC}>C</View>
            </ScrollView>
          </View>

以上是关于Taro+react开发(35) 实现拖动的主要内容,如果未能解决你的问题,请参考以下文章

Taro+react开发(99):问答模块06实现加减

跨端开发框架 Taro

react+taro实现省县区三级联动

react+taro实现省县区三级联动

react+taro实现省县区三级联动

Taro+react开发(45)taro中组件生命周期