Journal / Tools
Fast is what happens after the click
A quick initial load is only the start. Menus, filters, and transitions need to respond well throughout the visit.
Responsiveness is continuous
Interaction to Next Paint measures how quickly a page presents a visual response to qualifying user interactions. Google’s optimization guidance breaks the delay into input delay, event-handler work, and presentation delay. This helps explain why a page can load quickly yet feel heavy once someone starts using it.
Find the expensive work
Inspect a slow interaction in a performance trace before changing the animation. Repeated layout reads, large rendering updates, and unrelated JavaScript can all compete with the response. An elegant easing curve cannot hide a main thread that is too busy to draw. Give immediate feedback where appropriate, and move nonessential work out of the critical interaction.
Our take
For a visual site, establish a small motion budget. Animate transforms and opacity when they express the intended effect, stop continuous work offscreen, and avoid downloading a video before someone asks to preview it. Then test on a modest device, not only a fast workstation. Performance is part of the identity: an interface that responds calmly and predictably feels more considered than one that performs a flourish before accepting input.
Put it into practice.
Record your slowest menu or filter interaction. Remove the largest avoidable task, then measure again under the same conditions.
Sources & further reading
Editorial analysis by BEMATE. Sources reviewed 6 September 2026.