diff --git a/entries/jQuery.Animation.xml b/entries/jQuery.Animation.xml new file mode 100644 index 00000000..a07ff660 --- /dev/null +++ b/entries/jQuery.Animation.xml @@ -0,0 +1,33 @@ + + + jQuery.Animation() + + 1.8 + + + A function, or array of functions, that is called when the Deferred generates progress notifications. + + + + + +

+ The jQuery.Tween function is called internally by .animate(). It is provided mostly for plugin authors to further customize animations. +

+

The jQuery.Tween function returns a Tween object with the following properties:

+ + +
+ + +
diff --git a/entries/jQuery.Tween.xml b/entries/jQuery.Tween.xml new file mode 100644 index 00000000..7f79c625 --- /dev/null +++ b/entries/jQuery.Tween.xml @@ -0,0 +1,33 @@ + + + jQuery.Tween() + + 1.8 + + + A function, or array of functions, that is called when the Deferred generates progress notifications. + + + + + +

+ The jQuery.Tween function is called internally by .animate(). It is provided mostly for plugin authors to further customize animations. +

+

The jQuery.Tween function returns a Tween object with the following properties:

+ + +
+ + +
diff --git a/includes/options-argument.xml b/includes/options-argument.xml index 6d3c3522..15cb33ba 100644 --- a/includes/options-argument.xml +++ b/includes/options-argument.xml @@ -14,24 +14,12 @@ - A function to be called after each step of the animation. + A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set. The numeric value of the property being animated at each step - - A map of properties related to the animation and the element being animated - - The animated element - - - The first value of the animated property - - - The last value of the animated property - - - The property being animated - + + An object of properties related to the animation and the element being animated. For information about the tween object and its properties, see jQuery.Tween @@ -40,4 +28,45 @@ A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions. + + + A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. + + An enhanced Promise oject with additional properties for the animation + + + A number from 0 to 1 indicating the progress of the animation + + + A number indicating the remaining number of milliseconds until the scheduled end of the animation + + + + A function to be called when the animation completes (its Promise object is resolved). + + An enhanced Promise oject with additional properties for the animation + + + Indicates whether the animation jumped to the end + + + + A function to be called when the animation fails to complete (its Promise object is rejected). + + An enhanced Promise oject with additional properties for the animation + + + Indicates whether the animation jumped to the end + + + + A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected). + + An enhanced Promise oject with additional properties for the animation + + + Indicates whether the animation jumped to the end + + +