You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, if you want to drag an element on the web, you need to listen for pointermove events and update the position of the element. This means the operation is bound by the event loop, and can easily jank.
It feels like anchoring could solve this, by anchoring to a particular pointer. Then, the element can be moved to a layer in the compositor, and its position can be updated without blocking on the event loop.
kizu, argyleink, lukewarlow, Link2Twenty, yisibl and 6 more