Currently, I am working on creating a video gallery for a friend and I am experimenting with changing the thumbnail opacity using jQuery fade effect.
While I can achieve this with CSS, I want to implement it with jQuery for a smoother transition.
If you have any suggestions or tips on what I might be doing wrong, please feel free to share.
You can view my progress so far in this fiddle.
I suspect that the issue lies within the jQuery code snippet below:
$(".thumbnail-element").hover(function () {
$(this).find('.thumb1').fadeIn(100);
},
function () {
$(this).find('.thumb1').fadeOut(100);
});