It is much better for moving objects to use transform: translate(x, y) instead of absolute positioning with top & left, because changing the top and left attributes it needs Chrome to process 3 operations:
- It have to process the layout, because
top/left may affect other elements on the page
- Damaged Pixels have to be repainted
- The Composition has changed so it has to calculate over this step too
A much better choice is to use the transform attribute instead, because this attribute doesn't affect other elements and so no pixels can be damaged and you only have to change your Composition.
It would be a great enhancement.
I saw pages using your Plugin and forced them to FPS under 30 and sometimes 20.
I hope I could help you!
For more information:
http://csstriggers.com/#top
http://csstriggers.com/#transform
It is much better for moving objects to use
transform: translate(x, y)instead ofabsolutepositioning withtop&left, because changing the top and left attributes it needs Chrome to process 3 operations:top/leftmay affect other elements on the pageA much better choice is to use the
transformattribute instead, because this attribute doesn't affect other elements and so no pixels can be damaged and you only have to change your Composition.It would be a great enhancement.
I saw pages using your Plugin and forced them to FPS under 30 and sometimes 20.
I hope I could help you!
For more information:
http://csstriggers.com/#top
http://csstriggers.com/#transform