Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://fancyapps.com/fancybox/source/jquery.fancybox.pack.js?v=2.1.3"></script>
  
  <meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div class="container">
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
    <a class="fancybox" href="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" title="This is a test">
        <img src="http://www.w3.org/html/logo/downloads/HTML5_Logo_512.png" />
    </a>
  </div>
</body>
</html>
 
$(document).ready(function() {
  var imgCount = $('.container img').length;
  ContainerWidth = $('.container').outerWidth();
  $('.container img').each(function() {
    $(this).css({
      'width' : Math.floor(ContainerWidth/imgCount),
      'height' : 'auto'
    });
  });
$(".fancybox").fancybox({
    helpers : {
        overlay : {
            css : {
                'background' : 'rgba(58, 42, 45, 0.95)'
            }
        }
    }
});
  
  
});
console.log($('img').width());
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers