Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<div>
  <img src='http://cs402216.vk.me/v402216587/a7ea/GhKxl0ZUCAI.jpg' />
</div>
 
div {
  height: 150px;
  width: 150px;
  overflow:hidden;
}
img {
  position:relative;
  top:50%;
  left:50%;
}
 
$(function () {
  $('img').css({
    marginTop: -0.5*$('img').height()+'px',
    marginLeft: -0.5*$('img').width()+'px'
  });
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers