vigetlabs/ars-arsenal

View on GitHub
src/components/animation.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * For the gallery and table view, calculate the delay
 * with which to present items to a user
 */

export function itemAnimationDelay(index: number): number {
  return 100 + index * 45
}