I manage to zoom my pictures:
I use a Java scrip from this ekko-lightbox http://ashleydw.github.io/lightbox/
I just need to place the css and js
<link href="css/ekko-lightbox.min.css" rel="stylesheet">
<body>
<a href="images/shed.jpg" data-toggle="lightbox" data-title="Purse Brito">
<img class="thumbnail img-responsive" src="images/shed.jpg" alt="">
</a>
<script src="js/ekko-lightbox.min.js"></script>
<script type="text/javascript">
$(document).ready(function ($) {
$(document).delegate('*[data-toggle="lightbox"]', 'click', function(event) {
event.preventDefault();
return $(this).ekkoLightbox();
});
});
</script>

