Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div id="spacer"></div>
<video controls id="trees">
  <source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
  <source src="http://vjs.zencdn.net/v/oceans.webm" type="video/webm">
  </video>
</body>
</html>
 
(function () {
/*
memoize video, window and document so you don't have to create and
garbage-collect new objects every time you scroll
*/
var video = $('#trees').get(0),
    $window = $(window),
    $document = $(document);
function updateVideo() {
    var duration = video.duration,
         scrollPosition = window.scrollY;
    if (duration) {
        video.currentTime = (scrollPosition / ($document.height() - $window.height())) * duration;
    }
}
// update video every time you scroll
$window.scroll(updateVideo);
// update video when metadata has loaded
$(video).on('loadedmetadata', updateVideo);
}());
Output

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

Dismiss x
public
Bin info
brianchirlspro
0viewers