May 22, 2023, 2:57 PM
@arminunruh thank you! guess css even better and faster
@arminunruh thank you! guess css even better and faster
anyone with similar problem:
the solution is to give each carousel an id and then you can target the caption with the help of the id in jquery for example:
jQuery(document).on("mouseenter", "#carousel-id", function(event) {
jQuery("#carousel-id .lay-carousel-sink-parent").animate({ opacity: 1 }, 1000);
});
jQuery(document).on("mouseleave", "#carousel-id", function(event) {
jQuery("#carousel-id .lay-carousel-sink-parent").animate({ opacity: 0 }, 1000);
});
This often solves issues you might run into