UNPKG

react-animated-bg

Version:

Strongly customizable React component helping you make animated background.

7 lines (5 loc) 274 B
export const getRandomFromRange = len => Math.floor(Math.random() * len); export const getPositionIndex = (currentIndex, colors, isRandom) => { if (isRandom) return getRandomFromRange(colors.length); return currentIndex === colors.length - 1 ? 0 : currentIndex + 1; };