Hover another element

var filter = 'invert(60%) sepia(35%) saturate(448%) hue-rotate(282deg) brightness(97%) contrast(90%)';

jQuery(".hover-example a").hover(function(){
    jQuery("img").css("filter", filter);
    }, function(){
    jQuery("img").css("filter", "none");
});

Leave a Reply

Your email address will not be published. Required fields are marked *