VelocityJS中的过渡效果动画

时间:2017-07-20 20:09:55

标签: javascript css3 transitions velocity.js

我正在使用velocity-animate模块。我有一个部门,我想应用一些效果,如transition.flipXOuttransition.flipBounceXIn。 (此Link的“效果:预注册”部分中的任何效果)。

直到现在我已尝试使用以下代码进行转换。

Velocity(element, "flipXOut", {duration: 1500, easing: "easeInOutCirc"}) //Not working

Velocity(element, "transition.flipXOut", {duration: 1500, easing: "easeInOutCirc"}) // not working

如何使用velocity-animate模块使用所有这些过渡?

PS:我没有使用jQuery,也不会使用速度cdn。

1 个答案:

答案 0 :(得分:-1)

您需要在标题中添加velocity.ui.js文件。

有关详情https://www.smashingmagazine.com/2014/06/faster-ui-animations-with-velocity-js/

,请参阅此处