You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something that has been disturbing me for a while in materialfox, is that the transitions for the tabs hover animation (changing background color) does not match chromium's, not remotely close. I loved hovering on tabs on chromium because of the transitions and the way it looked when i hovered.
Recently, the chromium team has started making webium, chromium browser based on webUI while chromium is based on SkiaUI.
I started looking at their code for the transition, because I can clearly now see it (right click on any element of the browser, and inspect), and here is how they do it:
Currently on materialfox we just use a cubic-bezier function to make the transition. It does not replicate, not remotely close, the transitions on chromium where it hovers fast, and then slowly release back to the default color.
I figured we could implement the hover effect like how chromium devs did in css.
(please add this I'm begging, willing to contribute btw)
Description
Hey!
Something that has been disturbing me for a while in materialfox, is that the transitions for the tabs hover animation (changing background color) does not match chromium's, not remotely close. I loved hovering on tabs on chromium because of the transitions and the way it looked when i hovered.
Recently, the chromium team has started making webium, chromium browser based on webUI while chromium is based on SkiaUI.
I started looking at their code for the transition, because I can clearly now see it (right click on any element of the browser, and inspect), and here is how they do it:
Currently on materialfox we just use a cubic-bezier function to make the transition. It does not replicate, not remotely close, the transitions on chromium where it hovers fast, and then slowly release back to the default color.
I figured we could implement the hover effect like how chromium devs did in css.
(please add this I'm begging, willing to contribute btw)
2025-10-18-17-09-35.mp4
Additional info (Optional)
No response