Changelog History
Page 1
-
v2.0.6
April 10, 2020 -
v2.0.5 Changes
June 10, 201810 June 2018
- Grab Promise in a try/catch
#875
- 0๏ธโฃ Get default duration if none set in arguments
#874
- Caching is disabled for scrollTop/Left so don't loop
#866
- ๐ฆ Expose Velocity().promise for use in Promise.all() etc
#868
- Consistent getPropertyValue for width / height
#860
#861
- ๐ Lock down some publicly accessible structures
acb2bd5
- โ Add Stagger and Drag options back - available for all animations
6b961de
- 0๏ธโฃ Ensure default delay, fix "pattern" error, create callback for options to use
2bdd7c1
- Grab Promise in a try/catch
-
v2.0.4 Changes
May 28, 2018v2.0.4
28 May 2018
-
v2.0.3 Changes
May 27, 2018๐ Possibly the final beta release before this comes out of beta.
The major change in this version is the addition of Sequences.
These replace the old V1 RunSequence and transitions. They are about as powerful as plain CSS animations, but run within the Javascript layer of the library, and allow you almost full control over them for creating and playing with them at runtime.
When a tab is hidden it will now update via a background web-worker - this prevents issues that have been occuring as a result of browser optimisations. When this happens it will reduce the FPS to 30FPS (an option for reducing this further will appear at some point).
โก๏ธ The UI-Pack has been updated, and is now simply a list of sequences that are available - these match the nice selection available from animate.css - as such they are intended as much as examples, as they are for use.
Example:
// Note that this one is already included in the UI-Pack...Velocity("registerSequence", "bounce", { "duration": 1000, "0,100%": { transformOrigin: "center bottom" }, "0%,20%,53%,80%,100%": { transform: ["translate3d(0,0px,0)", "easeOutCubic"] }, "40%,43%": { transform: ["translate3d(0,-30px,0)", "easeInQuint"] }, "70%": { transform: ["translate3d(0,-15px,0)", "easeInQuint"] }, "90%": { transform: "translate3d(0,-4px,0)" } });document.querySelector("#myElement").velocity("bounce");
0๏ธโฃ You may pass any options you wish to a sequence. There are (currently) only a small number of defaults allowed when defining them, but anything you pass when calling will override them.
๐ Keep your eyes open for updated documentation covering this soon.
-
v2.0.2 Changes
March 04, 20184 March 2018
- ๐ฆ The correct name for the requireJS package is "velocity-animate"
#768
- ๐ Fixes and updates in preparation for new sequence code
#849
#845
#839
- ๐ Make note of load order and extending other libraries
#828
- ๐
Shortcut for Object.create(null), Fix unit adding for some css styles and move into normalization code.
794d15c
- ๐ Version 2.0.2-beta
30ee65e
- ๐ Highlighted the documentation for V2
007e977
- ๐ฆ The correct name for the requireJS package is "velocity-animate"
-
v2.0.1 Changes
February 11, 2018 -
v2.0.0 Changes
February 01, 20181 February 2018
- โ Add a legacy readme, make sure we're using the latest Typescript, make sure npm's package-lock.json is included
5182912
- โก๏ธ Comment updates and and changes doc
e26106a
- While documenting realised that the timeStart argument to a progress callback is now too different, and that the activeCall argument was not listed in the typedef file.
69c7e44
- โ Add a legacy readme, make sure we're using the latest Typescript, make sure npm's package-lock.json is included
-
v1.5.2 Changes
July 31, 2018๐ Bugfix #889 - Stopping custom named queue breaks default main queue
-
v1.5.1 Changes
6 January 2018
- ๐ Fix crash on queue stop
#830
- โก๏ธ Update jsDelivr links
#799
- โ Add "window" to access to the 'navigator' property
#803
- Correct the initialization of the variable "firstTick" in the tick handler
#827
- โ Add support for global fps limiting
#818
- ๐ Release 1.5.1
6dd28a2
- โก๏ธ Update tick.ts
ed4634b
- โก๏ธ Update tick.ts
ff6a8c5
- ๐ Fix crash on queue stop
-
v1.5.0 Changes
18 March 2017
- ๐ Fix 2 issues breaking IE8 compatibility
#764
- ๐ฒ Prevent console.log error in IE9 or less
#756
- IE9 sometimes checks again window which can have length 0
#757
- ๐ Fix performance.now() polyfill
#763
- โ Code cleanup, add [].includes() shim, fix JSHint warnings
4184d8e
- ๐ Release 1.5.0
9f4aacd
- โก๏ธ Update CDN links
c8eb3e6
- ๐ Fix 2 issues breaking IE8 compatibility