Choppy scrolling with absolute positioned elements in ReactHow do I detect a click outside an element?How do I check if an element is hidden in jQuery?Retrieve the position (X,Y) of an HTML elementCreating a div element in jQueryHow to move an element into another element?How to center absolutely positioned element in div?How do I remove a particular element from an array in JavaScript?jQuery scroll to elementHow to center a “position: absolute” elementLoop inside React JSX

Employer demanding to see degree after poor code review

Why does not valiant's reduction show NP=RP?

How strong are Wi-Fi signals?

Array Stutter Implementation

Seed ship, unsexed person, cover has golden person attached to ship by umbilical cord

Why doesn't the Earth's acceleration towards the Moon accumulate to push the Earth off its orbit?

What does the view outside my ship traveling at light speed look like?

Plot twist where the antagonist wins

Does revoking a certificate result in revocation of its key?

Placing bypass capacitors after VCC reaches the IC

Would Brexit have gone ahead by now if Gina Miller had not forced the Government to involve Parliament?

In general, would I need to season a meat when making a sauce?

How can I get exact maximal value of this expression?

Crossing US border with music files I'm legally allowed to possess

What are the benefits of cryosleep?

Why is this Simple Puzzle impossible to solve?

Would the Geas spell work in a dead magic zone once you enter it?

Where did Wilson state that the US would have to force access to markets with violence?

What's the Difference between Two Single-Quotes and One Double-Quote?

Binary Search in C++17

Is healing by fire possible?

How many chess players are over 2500 Elo?

Why do airplanes use an axial flow jet engine instead of a more compact centrifugal jet engine?

How bitcoin nodes update UTXO set when their latests blocks are replaced?



Choppy scrolling with absolute positioned elements in React


How do I detect a click outside an element?How do I check if an element is hidden in jQuery?Retrieve the position (X,Y) of an HTML elementCreating a div element in jQueryHow to move an element into another element?How to center absolutely positioned element in div?How do I remove a particular element from an array in JavaScript?jQuery scroll to elementHow to center a “position: absolute” elementLoop inside React JSX






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have many absolute-positioned elements inside an absolute-positioned parent element. I want to have direct control over the scrolling using the onWheel event in React. The problem is, when I have too many elements, the scrolling becomes choppy. If, rather than controlling the scrolling manually with onWheel, I leave it to the browser, the scrolling is as smooth as butter.



Here is a code sandbox so you can see what I mean. Scroll anywhere in the righthand window to see the choppiness. If you go to the bottom of the code, and change the line ReactDOM.render(<ManualScroll />, rootElement); to ReactDOM.render(<DefaultScroll />, rootElement); the choppiness disappears. If you're on Mac, you may need to disable the "swipe between pages" trackpad setting in system settings.



https://codesandbox.io/s/nnnz3nr27l



How can I achieve this level of smoothness while retaining direct control over the scrolling?



Here's what I've tried:



  • Using translate3d rather than translate, both on the graph class and the node class

  • Debouncing the onWheel event

  • Using window.requestAnimationFrame to update the positions, rather than doing it directly in the onWheel handler









share|improve this question






















  • Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

    – ChrisBrownie55
    Mar 24 at 7:14






  • 1





    Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

    – ChrisBrownie55
    Mar 24 at 7:23











  • My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

    – Andrii Rudavko
    Mar 24 at 8:30











  • Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

    – CaptainStiggz
    Mar 24 at 20:35











  • @ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

    – CaptainStiggz
    Mar 24 at 20:38

















0















I have many absolute-positioned elements inside an absolute-positioned parent element. I want to have direct control over the scrolling using the onWheel event in React. The problem is, when I have too many elements, the scrolling becomes choppy. If, rather than controlling the scrolling manually with onWheel, I leave it to the browser, the scrolling is as smooth as butter.



Here is a code sandbox so you can see what I mean. Scroll anywhere in the righthand window to see the choppiness. If you go to the bottom of the code, and change the line ReactDOM.render(<ManualScroll />, rootElement); to ReactDOM.render(<DefaultScroll />, rootElement); the choppiness disappears. If you're on Mac, you may need to disable the "swipe between pages" trackpad setting in system settings.



https://codesandbox.io/s/nnnz3nr27l



How can I achieve this level of smoothness while retaining direct control over the scrolling?



Here's what I've tried:



  • Using translate3d rather than translate, both on the graph class and the node class

  • Debouncing the onWheel event

  • Using window.requestAnimationFrame to update the positions, rather than doing it directly in the onWheel handler









share|improve this question






















  • Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

    – ChrisBrownie55
    Mar 24 at 7:14






  • 1





    Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

    – ChrisBrownie55
    Mar 24 at 7:23











  • My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

    – Andrii Rudavko
    Mar 24 at 8:30











  • Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

    – CaptainStiggz
    Mar 24 at 20:35











  • @ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

    – CaptainStiggz
    Mar 24 at 20:38













0












0








0








I have many absolute-positioned elements inside an absolute-positioned parent element. I want to have direct control over the scrolling using the onWheel event in React. The problem is, when I have too many elements, the scrolling becomes choppy. If, rather than controlling the scrolling manually with onWheel, I leave it to the browser, the scrolling is as smooth as butter.



Here is a code sandbox so you can see what I mean. Scroll anywhere in the righthand window to see the choppiness. If you go to the bottom of the code, and change the line ReactDOM.render(<ManualScroll />, rootElement); to ReactDOM.render(<DefaultScroll />, rootElement); the choppiness disappears. If you're on Mac, you may need to disable the "swipe between pages" trackpad setting in system settings.



https://codesandbox.io/s/nnnz3nr27l



How can I achieve this level of smoothness while retaining direct control over the scrolling?



Here's what I've tried:



  • Using translate3d rather than translate, both on the graph class and the node class

  • Debouncing the onWheel event

  • Using window.requestAnimationFrame to update the positions, rather than doing it directly in the onWheel handler









share|improve this question














I have many absolute-positioned elements inside an absolute-positioned parent element. I want to have direct control over the scrolling using the onWheel event in React. The problem is, when I have too many elements, the scrolling becomes choppy. If, rather than controlling the scrolling manually with onWheel, I leave it to the browser, the scrolling is as smooth as butter.



Here is a code sandbox so you can see what I mean. Scroll anywhere in the righthand window to see the choppiness. If you go to the bottom of the code, and change the line ReactDOM.render(<ManualScroll />, rootElement); to ReactDOM.render(<DefaultScroll />, rootElement); the choppiness disappears. If you're on Mac, you may need to disable the "swipe between pages" trackpad setting in system settings.



https://codesandbox.io/s/nnnz3nr27l



How can I achieve this level of smoothness while retaining direct control over the scrolling?



Here's what I've tried:



  • Using translate3d rather than translate, both on the graph class and the node class

  • Debouncing the onWheel event

  • Using window.requestAnimationFrame to update the positions, rather than doing it directly in the onWheel handler






javascript html css reactjs






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 7:10









CaptainStiggzCaptainStiggz

77831332




77831332












  • Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

    – ChrisBrownie55
    Mar 24 at 7:14






  • 1





    Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

    – ChrisBrownie55
    Mar 24 at 7:23











  • My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

    – Andrii Rudavko
    Mar 24 at 8:30











  • Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

    – CaptainStiggz
    Mar 24 at 20:35











  • @ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

    – CaptainStiggz
    Mar 24 at 20:38

















  • Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

    – ChrisBrownie55
    Mar 24 at 7:14






  • 1





    Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

    – ChrisBrownie55
    Mar 24 at 7:23











  • My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

    – Andrii Rudavko
    Mar 24 at 8:30











  • Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

    – CaptainStiggz
    Mar 24 at 20:35











  • @ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

    – CaptainStiggz
    Mar 24 at 20:38
















Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

– ChrisBrownie55
Mar 24 at 7:14





Maybe you're debouncing too long or perhaps waiting until the next frame is waiting too long?

– ChrisBrownie55
Mar 24 at 7:14




1




1





Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

– ChrisBrownie55
Mar 24 at 7:23





Actually, I think it's just that you're manipulating (and rerendering) 5,000 elements on every scroll. You should definitely be using something like the canvas api for this

– ChrisBrownie55
Mar 24 at 7:23













My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

– Andrii Rudavko
Mar 24 at 8:30





My guess would be 5000 elements as well. Changing the value to 500 will make it smooth. Another way of doing this is to just move the 100 elemnts that are to the left and 100 elements that are to the right of the screen. While keeping another 4800 stationary until they are needed. Then swspping the outermost element with the stationary.

– Andrii Rudavko
Mar 24 at 8:30













Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

– CaptainStiggz
Mar 24 at 20:35





Yeah, doing some trickery to only move the elements that are on-screen or close to being on-screen was my next idea. Is this how browsers achieve the desired level of smoothness? I.e., when I set overflow: auto on the parent element?

– CaptainStiggz
Mar 24 at 20:35













@ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

– CaptainStiggz
Mar 24 at 20:38





@ChrisBrownie55 I'd love to use canvas, but these elements will actually contain a bunch of regular html - text, images, etc. There won't really be 5,000 individual elements, but there could be 5,000 elements when all the children's children are accounted for. The simple shapes are just to illustrate the issue.

– CaptainStiggz
Mar 24 at 20:38












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321492%2fchoppy-scrolling-with-absolute-positioned-elements-in-react%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55321492%2fchoppy-scrolling-with-absolute-positioned-elements-in-react%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript