Advertisement
nhanchaukp

Fancybox Blogger original resolution image

May 29th, 2021
1,587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <link href='https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css' rel='stylesheet'>
  2. <script src='https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
  3. <script src='https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js'></script>
  4. <script>
  5. //<![CDATA[
  6.     $('.post-body img').each(function() {
  7.         var img_link = $(this).attr('src')
  8.         if ($(this).parent('a') !== undefined) {
  9.             $(this).parent('a').attr('data-fancybox', 'gallery');
  10.         } else {
  11.             $(this).wrap('<a href=' + img_link.replace(/(\/s\d+\/)/, '/s0/') + ' data-fancybox='gallery'></a>');
  12.         }
  13.     });
  14. //]]>
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement