Guest User

Untitled

a guest
Sep 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $("div.image-magnify:last div.thumbnail")
  2. .mouseenter(function() {
  3. $(this).children("div.box").fadeTo(333, 1);
  4. $(this).find("div.tint").fadeTo(333, 0.5);
  5. $(this).find("div.blur div:not(div.tint)").fadeTo(333, 0.8);
  6. $(this).parent().children("div.popup")
  7. .css("display", "block").fadeTo(333, 1);
  8. })
  9. .mouseleave(function() {
  10. $(this).children("div.box").fadeTo(333, 0);
  11. $(this).find("div.tint").fadeTo(333, 0);
  12. $(this).find("div.blur div").fadeTo(333, 0);
  13. $(this).parent().children("div.popup")
  14. .css("display", "none").fadeTo(333, 0);
  15. });
Add Comment
Please, Sign In to add comment