google-fabric / velocity-react

React components for Velocity.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Options hash in VelocityComponent using Velocity UI Pack

jwdinker opened this issue · comments

Outside of velocity-react you can pass in an options hash to a velocity ui pack animation like so...

$elements.velocity("callout.bounce",{duration:500 ....);

I was confused in the documentation where it says :

Unrecognized properties are passed as options to Velocity (e.g. duration, delay, loop).

Just needed some clarification that if you are using a VelocityComponent with velocity UI pack transitions like 'transition.slideLeftIn', you have to use registerEffect to add these options?

This means you can do:

<VelocityComponent animation="transition.slideLeftIn" duration={500} delay={1000} />

“unrecognized” in this case means props that aren’t handled directly by VelocityComponent.