Advertisement
abushyk

Untitled

Dec 28th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $('.fotorama')
  3.     .on('fotorama:fullscreenenter fotorama:fullscreenexit', function (e, fotorama) {
  4.     if (e.type === 'fotorama:fullscreenenter') {
  5.         // Options for the fullscreen
  6.         fotorama.setOptions({
  7.             fit: 'contain'
  8.         });
  9.     } else {
  10.         // Back to normal settings
  11.         fotorama.setOptions({
  12.             fit: 'cover'
  13.         });
  14.     }
  15.     })
  16.     .fotorama();
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement