DEV Community

Discussion on: Web performance for a Frontend developer

Collapse
 
sbadhwar profile image
SAURABH BADHWAR

Thanks Mohan for sharing some great insights into the web performance. It is often one of the places which is more commonly overlooked in a lot of projects while it has far reaching consequences on where the project will be successful or not.
Beyond the points you have mentioned, one of the other common issues I have seen in quite some application frontends is the excessive use of animations on the DOM elements to add more visual aspect.
Though this adds to the added eye-candy, it also triggers frequent recalculations of the layout in the browser, again impacting the user where they face input lags while the browser is recalculating the layout. This is something I really wish also comes into picture and gets optimized.

Collapse
 
mohandere profile image
Mohan Dere

Hi Saurabh,

Thanks for mentioning the cost of heavy animations. They can cause extra overheads on the main thread thus can lead to bad UX.