Hey,
I have a container box within a repeater.
Using $item, I coded it so when you mouseIn on the box of one of the repeated items, the background color of the hovered box changes, an example is attached.
It used to work fine and the color would change immediately when you hover, but for some reason, without me changing anything, the behaviour changed and now the color changes in a slow fade to the other color instead of fast and immediately.
I don’t have any animations applied or whatever…
Any idea on the problem?
Thanks.
$w('#repeater').onItemReady(($item, itemData, index) => {
$item('#box1').onMouseIn((event) => {
$item('#box1').style.backgroundColor = "#ffffff";
})
})