Files
2026-04-28 15:13:50 +02:00

21 lines
441 B
JavaScript

(function ($) {
$(window).on("elementor/frontend/init", function () {
elementorFrontend.hooks.addAction("frontend/element_ready/mfn_clients.default", function ($scope, $) {
$scope.find('.greyscale .client_wrapper .gs-wrapper').each(function () {
$(this).BlackAndWhite({
hoverEffect: false,
intensity: 1 // opacity: 0, 0.1, ... 1
});
});
});
});
})(jQuery);