Velocity V2 Stable
See original GitHub issueHey thanks for great animation plugin i love this plugin more than other animation framework ^-^👍
When the new version becomes ( stable ) ? And when will be released? 🤔
cuz some of the animation in newer version dosent work. for example animation onClick just add velocity-animate class and then nothing happen just addClass and dont run the animation…
TnQ ❤️
===============================================
I found my problem that was my bad 🙃 visibility and display
work on fewer version like V1.5.0 but dose’nt work on V2 👇
$element.velocity({ opacity: 0 }, { duration: 300, visibility: "hidden" })
i must use visibility in property like this 👇
$element.velocity({ opacity: 0, visibility: "hidden" }, { duration: 300 })
my fault is using visibility and display in options
in V2 display and visibility becomes a property
and These changes have not yet been applied to the site http://velocityjs.org/#displayAndVisibility
for more information about V2 check this link
https://github.com/julianshapiro/velocity/blob/master/V2_CHANGES.md
one of the changes i dont understand it yet 🤔 💭
Transforms - Use these directly within CSS, don’t try the old shortcuts as they don’t exist. Can you explain to us in this case?
=================================
understood transform too 😆
in fewer version V1.5.0 transform must be like this
$element.velocity({ translateX: "25px", scale: "1.2" }, { duration: 300 })
but in newer V2 u must use transform before it to transforms include in one property
$element.velocity({ transform: "translateX(25px) scale(1.2)" }, { duration: 300 })
i like fewer version (V1.5.0 transform) besause make our code cleaner and better understanding in new version transform Duration just apply to first transform property 😭((
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:5
Top GitHub Comments
We’re aiming to be able to have a stable release by the beginning of March - but need to make sure it’s stable and complete enough to do that, so the date may slip slightly.
The old named animations (UI-Pack and Sequences) are being merged into one “sequences” module that I’m working on now - I’ll also bring in some of the newer transitions from (animate.css)[https://daneden.github.io/animate.css/] when done.
Do remember to check the console for any errors, and report any bugs or unexpected behaviours that you come across - it might be as simple as missing or non-obvious documentation (which needs help!) 😉
Running somewhat late, see #851 for updates - I’m putting as much time in as I can right, now, trying to lock down final important bugs and get the documentation updated.