Advertisement
Guest User

Untitled

a guest
Mar 14th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.90 KB | None | 0 0
  1. (function($){
  2.     $(".ps-photo-download").on("click", function(){
  3.         getImgUrl();
  4.     });
  5.    
  6.     function getImgUrl()
  7.     {
  8.         var imgUrl = $(".ps-carousel-content img").attr("src");
  9.         return imgUrl.toString();
  10.     }
  11.  
  12.     var myPhotoSwipe = $("#gallery-swipe a").photoSwipe(
  13.     {
  14.         enableMouseWheel: false,
  15.         enableKeyboard: true,
  16.         getToolbar: function(){
  17.             // Add a download image link
  18.             var link = '<a class="ps-photo-download" href="#"></a>';
  19.             $('.ps-carousel').after(link);
  20.             return '<div class="ps-toolbar-close"><div class="ps-toolbar-content"></div></div><div class="ps-toolbar-play"><div class="ps-toolbar-content"></div></div><div class="ps-toolbar-previous"><div class="ps-toolbar-content"></div></div><div class="ps-toolbar-next"><div class="ps-toolbar-content"></div></div>';
  21.         }
  22.     });
  23. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement