Quiero que las imágenes se muestren cuando pase el mouse sobre las palabras y se oculten cuando las quite.
Referencia a lo que quiero http://www.saramarandi.com/
Intenté usar este código aquí, pero realmente no me está dando lo que quiero.
$(this).parent().find("img").addClass("ishover"); }, function() { $(this).parent().find("img").removeClass("ishover"); }); // Parallax effect $("h1").mousemove(function(e){ // Get the Y offset from the first product var offset = $(this).offset().top-$(":first-child", $(".item")).offset().top; // Calculate the new position var movex = (e.pageX * -1.73 / 6); var movey = ((e.pageY-offset) * -1.73 / 6); // Apply the margins $(this).parent().find("img").css('margin-left', movex + 'px')/2; $(this).parent().find("img").css('margin-top', movey + 'px'); });```