Home > Blockchain >  Abandoned css linear transition function?
Abandoned css linear transition function?

Time:09-02

In MDN References for CSS transitions, there is a line in the grammar section referring to a transition that is named linear but takes arguments.

<linear-easing-function> = 
  linear( <linear-stop-list> ) 

But I could not find any documentation or example of using it anywhere online. Is it possible that it's just in CSS grammar, but it's not implemented in the engine for some reason?

CodePudding user response:

It’s a draft, part of CSS Easing Functions Level 2. It’s only implemented in Firefox Nightly so far.

  • Related