Hi,
I want to reveal the image in this format when user hover the mouse on repeater item. Is that possible to do without coding?
Thanks
Shantanu
Hi,
I want to reveal the image in this format when user hover the mouse on repeater item. Is that possible to do without coding?
Thanks
Shantanu
No one is available to give suggestion on this?
If this is possible without coding? I don’t think so, but if you would use…
—> Wix-Animations <— this could work for you (CODE)
Hi,
Thanks for your reply. What will be code for this then?
Thanks
Well normaly it’s not DECEMBER and i am not SANTA, but i will show you some code…
First of all → you activate → DEV-MODE (developer-mode) on your Wix-Editor (no matter which wix-editor you are using).
Then you navigate to your wished page, you will find now a CODE-AREA (SECTION) where you will put in the following code…
$w.onReady(()=>{
$w('#dataset1').onReady(()=>{
$w('#repeater1').onItemReady(($i, iData, i)=>{});
$i('#image1').onMouseIn(()=>{
$w('#image1').show('fade');
});
$i('#image1').onMouseOut(()=>{
$w('#image1').show('fade');
});
});
});
});
You can change the functionality → using wix-animations and writing your own animated function.
But you can also check —> Editor X: About Click and Hover Interactions | Help Center | Wix.com