Improving Responsiveness in Text Inputs
nolanlawson.com
Improving Responsiveness in Text Inputs
1–10 of 13 posts
Re: Improving Responsiveness in Text Inputs
#2But note that requestIdleCallback is not supported in Safari, so you have to shim it there.
The spec is a good read: https://w3c.github.io/requestidlecallback/
Re: Improving Responsiveness in Text Inputs
#3Re: Improving Responsiveness in Text Inputs
#4I wish industry encouraged engineers more to pay attention to this kind of things, rather than to flashy bells and whistles. 30-50ms may seem insignificant, but has a huge impact on the overall experience.
Re: Improving Responsiveness in Text Inputs
#5Re: Improving Responsiveness in Text Inputs
#6I think one of the issues here is how to do it with something like React without it being hacky. If you are working with React for instance, updating the DOM manually may seem very bad, so you must take care how to approach this without doing unnecessary calculations and re-renders.
I looks very promising. Taking the best parts of React's API, but avoiding the performance bottleneck of a VDOM.
Re: Improving Responsiveness in Text Inputs
#7Re: Improving Responsiveness in Text Inputs
#8I wish industry encouraged engineers more to pay attention to this kind of things, rather than to flashy bells and whistles. 30-50ms may seem insignificant, but has a huge impact on the overall experience.
1ms is significant if you're a heavy user: https://www.youtube.com/watch?v=vOvQCPLkPt4 .
Re: Improving Responsiveness in Text Inputs
#9Re: Improving Responsiveness in Text Inputs
#10Earlier quoted context omitted.
1ms is significant if you're a heavy user: https://www.youtube.com/watch?v=vOvQCPLkPt4 .
That would require a real-time OS, I suppose.