I noticed that the fan of my laptop (2014 MacBook Pro, Chromium) kicks in when scrolling image-heavy pages, the homepage in particular. When removing the `mix-blend-mode` CSS rule, scrolling becomes smooth again, and the GPU is less solicited. https://stackoverflow.com/questions/33795350/mix-blend-mode-scroll-lag-issues Unsure about this, but maybe using `isolation: isolate;` on the containing element might help? https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode#HTML_example I believe that fixing this issue would minimize the energy consumption for the user/client.
I noticed that the fan of my laptop (2014 MacBook Pro, Chromium) kicks in when scrolling image-heavy pages, the homepage in particular.
When removing the
mix-blend-modeCSS rule, scrolling becomes smooth again, and the GPU is less solicited.https://stackoverflow.com/questions/33795350/mix-blend-mode-scroll-lag-issues
Unsure about this, but maybe using
isolation: isolate;on the containing element might help?https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode#HTML_example
I believe that fixing this issue would minimize the energy consumption for the user/client.