[go: up one dir, main page]

Skip to content

Commit

Permalink
Add Stagger and Drag options back - available for all animations
Browse files Browse the repository at this point in the history
  • Loading branch information
Rycochet committed Jun 10, 2018
1 parent acb2bd5 commit 6b961de
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 101 deletions.
33 changes: 29 additions & 4 deletions src/velocityFn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
// Typedefs
import {
AnimationCall, AnimationFlags, HTMLorSVGElement, Properties, StrictVelocityOptions,
VelocityElements, VelocityObjectArgs, VelocityOptions, VelocityPromise, VelocityProperty,
VelocityResult,
VelocityElements, VelocityObjectArgs, VelocityOptionFn, VelocityOptions, VelocityPromise,
VelocityProperty, VelocityResult,
} from "./../velocity.d";

// Project
import {isBoolean, isFunction, isNode, isPlainObject, isString, isVelocityResult, isWrapped} from "./types";
import {isBoolean, isFunction, isNode, isNumber, isPlainObject, isString, isVelocityResult, isWrapped} from "./types";
import {cloneArray, defineProperty, getValue} from "./utility";
import {Data} from "./Velocity/data";
import {
Expand Down Expand Up @@ -125,6 +125,10 @@ export function Velocity(this: VelocityElements | void, ...argsList: any[]): Vel
* element's animations needs to be to the currently-running ones.
*/
animations: AnimationCall[],
/**
* Stagger delays the start of sequential elements in an animation.
*/
hasStagger: number | VelocityOptionFn<number> = 0,
/**
* The promise that is returned.
*/
Expand Down Expand Up @@ -316,6 +320,12 @@ export function Velocity(this: VelocityElements | void, ...argsList: any[]): Vel
/* Note: You can read more about the use of mobileHA in Velocity's documentation: velocity-animate/#mobileHA. */
options.mobileHA = true;
}
if (optionsMap.drag === true) {
options.drag = optionsMap.drag;
}
if (isNumber(optionsMap.stagger) || isFunction(optionsMap.stagger)) {
hasStagger = options.stagger = optionsMap.stagger;
}
if (!isReverse) {
if (optionsMap["display"] != null) {
(propertiesMap as Properties<VelocityProperty>).display = optionsMap["display"] as string;
Expand Down Expand Up @@ -400,7 +410,8 @@ export function Velocity(this: VelocityElements | void, ...argsList: any[]): Vel
};

animations = [];
for (const element of elements) {
for (let index = 0; index < elements.length; index++) {
const element = elements[index];
let flags = 0;

if (isNode(element)) { // TODO: This needs to check for valid animation targets, not just Elements
Expand All @@ -422,6 +433,20 @@ export function Velocity(this: VelocityElements | void, ...argsList: any[]): Vel

options._total++;
animations.push(animation);
if (hasStagger) {
if (isFunction(hasStagger)) {
const num = hasStagger.call(element, index, elements.length, elements, "stagger");

if (isNumber(num)) {
animation.delay = getValue(options.delay, defaults.delay) + num;
}
} else {
animation.delay = getValue(options.delay, defaults.delay) + (hasStagger * index);
}
}
if (options.drag) {
animation.duration = options.duration - (options.duration * Math.max(1 - (index + 1) / elements.length, 0.75));
}
if (maybeSequence) {
expandSequence(animation, maybeSequence);
} else if (isReverse) {
Expand Down
30 changes: 22 additions & 8 deletions velocity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1094,9 +1094,9 @@ export interface VelocityOptions {
delay?: "fast" | "normal" | "slow" | number;

/**
* TODO: Not currently implimented.
*
* @deprecated
* Reduce the duration of each successive element so they drag into final
* state. The first quarter of the elements will get a reduced duration (ie.
* they will finish faster) in a smooth way.
*/
drag?: boolean;

Expand Down Expand Up @@ -1206,11 +1206,10 @@ export interface VelocityOptions {
speed?: number;

/**
* TODO: Not currently implimented.
*
* @deprecated
* Supply a delay in ms, and every element in the animation will get this
* delay multiplied by its index added to it.
*/
stagger?: string | number;
stagger?: number | VelocityOptionFn<number>;

/**
* When adding animations to elements each element has its own queue of
Expand Down Expand Up @@ -1513,7 +1512,22 @@ export type VelocityElements = HTMLorSVGElement | HTMLorSVGElement[];
* @returns When getting a value it must return a string, otherwise the return
* value is ignored.
*/
export type VelocityNormalizationsFn = ((element: HTMLorSVGElement, propertyValue: string) => void) & ((element: HTMLorSVGElement) => string);
export type VelocityNormalizationsFn =
((
element: HTMLorSVGElement,
propertyValue: string) => void)
& ((
element: HTMLorSVGElement) => string);

/**
* A callback to allow us to generate an option value.
*/
export type VelocityOptionFn<T> = (
this: HTMLorSVGElement,
index?: number,
total?: number,
elements?: VelocityElements,
option?: string) => T;

/**
* A callback used for progress tracking.
Expand Down
89 changes: 46 additions & 43 deletions velocity.es5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion velocity.es5.js.map

Large diffs are not rendered by default.

89 changes: 46 additions & 43 deletions velocity.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion velocity.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion velocity.min.js

Large diffs are not rendered by default.

0 comments on commit 6b961de

Please sign in to comment.