Search code examples
animationcss-animationsframerjs

How to slow down Framer animations


I'm looking for a solution to slow down FramerJS animations by a certain amplitude.

In the Velocity Animation framework it's posible to do Velocity.mock = 10, to slow down everything by a factor of 10.

Either the docs are lacking in the respect, or this feature doesn't currently exist and should really be implemented.


Solution

  • You can use

    Framer.Loop.delta = 1 / 120
    

    to slow down all the animations by a factor of 2. The default value is 1 / 60.