15 lines
551 B
JavaScript
15 lines
551 B
JavaScript
import { spring } from 'motion-dom';
|
|
import { createAnimationsFromSequence } from '../sequence/create.mjs';
|
|
import { animateSubject } from './subject.mjs';
|
|
|
|
function animateSequence(sequence, options, scope) {
|
|
const animations = [];
|
|
const animationDefinitions = createAnimationsFromSequence(sequence, options, scope, { spring });
|
|
animationDefinitions.forEach(({ keyframes, transition }, subject) => {
|
|
animations.push(...animateSubject(subject, keyframes, transition));
|
|
});
|
|
return animations;
|
|
}
|
|
|
|
export { animateSequence };
|