View Single Post
  #2  
Old September 19th 18, 08:55 PM posted to microsoft.public.windowsxp.general
JJ[_11_]
external usenet poster
 
Posts: 744
Default FF52 esr - Disabeling CSS animations

On Wed, 19 Sep 2018 10:09:37 +0200, R.Wieser wrote:
Hello all,

Some time ago I told my FF 52 to disable or play only once CSS and image
animations - or so I thought.

There seems to be an animation which thinks itself to be above of all that,
and animates to its hearts desire. :-(

It can be found here (at the botton, infront of the "Loading Feedback"
line):

https://docs.microsoft.com/en-us/win...f-wdm-dbgprint

Is there a way to apply a browser setting to get that (good-for-nothing) CSS
animation stopped too ?

Regards,
Rudy Wieser

P.s.
I could ofcourse throw a plugin or GreaseMonkey at it, but would like a
simpeler method (though if a *generic* GreaseMonkey method is available I
would like to hear about it).

P.p.s.
Not posted into "mozilla.support.firefox" because that does not seem to be
allowed.


AFAIK, the animation settings on the about:config page are for browser GUI,
animation API (DOM) and -moz- prefixed CSS animation rules. There's none for
the CSS animation itself.

In my system, I use Stylus addon to disable animations and transitions using
below CSS.

*, *:before, *:after{
animation-iteration-count: 0 !important;
transition-duration: 0s !important;
transition-property: none !important;
}
Ads