0
I need to run this 'Grayscale' filter gradually, which will apply gradually over a period of time.
$('#backstatic').attr('style', 'filter: grayscale(100%)');
this is my line, I wonder if you have how to define the time for the filter effect to apply but gradually.
I’ve seen that you’ve done it but it wouldn’t be better this way?
$('#backstatic').css('filter', 'grayscale(100%)');
'Cause I think that would be wrong– I_like_trains