如何增加向上滚动的数量

我必须在每个滚动上增加计数1。


let scrollCount = 0;

//initially it would be 0 and after  every scroll up it should increase 1,

scrollCount++;

在react-native的每个滚动中,递增计数1的功能是什么。


//下面的js代码我知道..但是对于react-native感到困惑。


var scrollCount = 0;

           window.addEventListener('mousewheel', function(e){


            if(e.wheelDelta<=0 && scrollCount<5){

            scrollCount++;

            }


          else if(e.wheelDelta>0 && scrollCount>1){

        scrollCount--;

        }

         document.querySelector('.number').innerHTML = scrollCount;

         });


繁星点点滴滴
浏览 145回答 2
2回答

临摹微笑

object.onscroll = function(){&nbsp; //myScript};每次滚动运行您的脚本或添加事件监听器:object.addEventListener("scroll", myScript);它变成这样:var scrollCount = 0;//object is your document. or any DOM element you would like to addobject.onscroll = function(){&nbsp; scrollCount++;};

莫回无

您将onScroll回调添加到可滚动组件。例如,如果您有个ScrollView,则可以执行以下操作:<ScrollView&nbsp; onScroll={this.handleScroll}>&nbsp; <ComponentsWithinYourScrollView /></ScrollView>根据您定义为滚动的内容,您可能只希望在用户启动的每个滚动操作上增加,然后可能需要执行以下操作:<ScrollView&nbsp; onScrollBeginDrag={this.handleScrollStart}>&nbsp; <ComponentsWithinYourScrollView /></ScrollView>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript