Can I animate repeated elements of repeater's containers?

Solved. I used a timeline for each container and add it inside onEachItem, like that:

$w("#repeater").forEachItem( ($item, itemData, index) => {
    const timeline = wixAnimations.timeline({...});
    const myRepeatedImage = $item('#myRepeatedImage');
    timeline.add(myRepeatedImage,{...}).play();
} );