Filter rule to speedup transition animations

Various discussions related to filter list maintenance

Moderator: njones

Post Reply
Dima_pb
Posts: 1
Joined: Tue Feb 05, 2019 11:19 am

Filter rule to speedup transition animations

Post 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.
Dandelion Sprout
Posts: 6
Joined: Thu Oct 04, 2018 10:40 am
Location: Trondheim, Norway
Contact:

Re: Filter rule to speedup transition animations

Post 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 }
Post Reply