Hi Hana, it is definitely possible. In the editor, make your images non-visible by default, you do that by opening to the ‘code properties’ panel, selecting the image and ticking ‘hidden on load’
Iet’s assume your repeater is $w(‘#repeater1’) and an image is called $w(‘#imageX1’) You need to add a little bit of corvid code in the ‘onready’ function of your page
$w('#repeater1').onItemReady(function($item, itemData, index){
$item('#imageX1').show()
})
That’s probably all you need ![]()