Hello,
how can I add a delay on this effect using jQuery?
A fade-in/fade-out of the image’s opacity when mouse over it.
I’m new to coding so feel free to rewrite the code if you think there is a better way to do it.
$(document).ready(function() {
$("img").on({
mouseenter: function() {
$(this).css("opacity", "0.5")
},
mouseleave: function() {
$(this).css("opacity", "")
},
});
});
Jsfiddle link https://jsfiddle.net/w5d3jdjb/