I'm trying to replicate the effect seen on this webpage:
http://www.strongtie.com/products/alpha_list.html?source=topnav
When hovering over the text in the alphabetical listing, a popup image appears directly to the left of the text. This page helped get me started but I would like my images to appear to the left, instead of below. Also how do I get a different image to appear for multiple <p>
tags (instead of the just the one, (listed on the help page linked above) in var pathToImage
?
< script type = "text/javascript" >
<!--
$(document).ready(function() {
var yOff = 15;
var xOff = -20;
var pathToImage = "/v/vspfiles/images/simpson/A21__.jpg";
$(".text-hover-image").hover(function(e) {
$("body").append("<p id='image-when-hovering-text'><img src='" + pathToImage + "'/></p>");
$("#image-when-hovering-text")
.css("position", "absolute")
.css("top", (e.pageY - yOff) + "px")
.css("left", (e.pageX + xOff) + "px")
.fadeIn("fast");
},
function() {
$("#image-when-hovering-text").remove();
});
$(".text-hover-image").mousemove(function(e) {
$("#image-when-hovering-text")
.css("top", (e.pageY - yOff) + "px")
.css("left", (e.pageX + xOff) + "px");
});
});
//-->
< /script>
The result is on this page if you scroll down a bit to "A Angles" and hover over the link.
Any help appreciated, thanks!
That site is doing it with css:
HTML
CSS
It basically just displays the image on hover and then uses CSS for positioning.
TIP Use the chrome dev tools to inspect something like this.
Hope this helps