I would like my background-image Property fadeOut after 3 seconds possible?
i could just make dissapear but not fadeOut
$("input").css('background-image', 'none');
I would like my background-image Property fadeOut after 3 seconds possible?
i could just make dissapear but not fadeOut
$("input").css('background-image', 'none');
Use css transition
instead:
input {
-webkit-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
}