Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div class="flat transi">
  <div class="item bg1"></div>
  <div class="item bg1"></div>
  <div class="item bg3"></div>
  <div class="item bg4"></div>
</div>
  <input id="btn" type="button" value="run" />
</body>
</html>
 
$(function() {
  var fl = $('.flat')[0],
      btn = $('#btn');
 
  btn.on('click', function() {
    fl.style.transition = 'none';
    fl.style.transform = 'translate3d('+ (-750) + 'px, 0px, 0px)';
    setTimeout(function() {
      fl.style.transition = 'all .5s ease';
    fl.style.transform = 'translate3d('+ (-1500) + 'px, 0px, 0px)';
    }, 0);
    
    
  });
  
  
  
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers