Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(".map img").mouseenter(function() {
  2.   $(".hover").find("p").html($(this).attr("alt"));
  3.   $(".hover").find("img").attr("src", "images/full/" + $(this).attr("id") + ".jpg");
  4.  
  5.   $(".hover").css("display", "block");
  6.   $(".hover").css("opacity", "1");
  7.  
  8.   $(".hover").css("left", $(this).position().left - $(".hover").width()/2 + $(this).width()/2);
  9.   $(".hover").css("top", $(this).position().top - $(".hover").height()/2 + $(this).height()/2);
  10. });
  11.  
  12. $(".hover").mouseleave(function() {
  13.   $(".hover").css("opacity", "0").css("display", "none");
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement