Page 1 of 1

Filter rule to speedup transition animations

Posted: Tue Feb 05, 2019 11:37 am
by Dima_pb
On some sites designers setup very slow transition animations in CSS, like
-webkit-transition: width 5s;
-moz-transition: width 5s;
And sometimes (or always) this is very annoying. Is there possible to write a rule to speedup this? ie change 5s to 0.1s on a website or on all sites.

Re: Filter rule to speedup transition animations

Posted: Sun Mar 17, 2019 11:17 am
by Dandelion Sprout
It's possible to do so in uBlock Origin and in AdGuard, but I am not personally aware of any ways to do so in Adblock Plus.

uBO:

Code: Select all

example.com##.example:style(-webkit-transition: width 0.1s !important; -moz-transition: width 0.1s !important)
AdGuard:

Code: Select all

example.com##.example { -webkit-transition: width 0.1s !important; -moz-transition: width 0.1s !important }