Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. (function($) {
  2. $(document).ready(function() {
  3. $(".min").click(function() {
  4.  
  5. var img = $(this);
  6. var src = img.attr('src');
  7.  
  8. $('body').append('<div class="popup">'+
  9. '<div class="popup_bg"></div>'+
  10. '<img src="'+src+'" class="popup_img" />'+'</div>');
  11.  
  12. $('.popup').fadeIn(700);
  13.  
  14. $('.popup_bg').click(function() {
  15.  
  16. $('.popup').fadeOut(700);
  17. setTimeout(function() {
  18. $('.popup').remove();
  19. }, 700);
  20. });
  21. });
  22. });
  23.  
  24. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement