I was watching a friend's Vine video on the web, and I got the idea that it would be cool to control the playback of the video. I wrote this little bookmarklet to scrub through the video as you move your mouse over it.
Here's the original JavaScript:
// grab video element and pause it
var vid = document.getElementById('post_html5_api');
vid.pause();
// get x offset of video
var vidX = 0;
var el = vid;
while (el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) {
vidX += el.offsetLeft;
el = el.offsetParent;
}
// scrub the video based on mouse x
var vidTime = vid.seekable.end(0);
vid.addEventListener('mousemove', function(e) {
var x = e.clientX - vidX;
var percent = x / vid.offsetWidth;
vid.currentTime = percent * vidTime;
}, false);
And the bookmarklet (
Vine Scrubber):
javascript:(function()%7Bvar%20vid=document.getElementById('post_html5_api');vid.pause();var%20vidX=0;var%20el=vid;while(el&&!isNaN(el.offsetLeft)&&!isNaN(el.offsetTop))%7BvidX+=el.offsetLeft;el=el.offsetParent;%7Dvar%20vidTime=vid.seekable.end(0);vid.addEventListener('mousemove',function(e)%7Bvar%20x=e.clientX-vidX;var%20percent=x/vid.offsetWidth;vid.currentTime=percent*vidTime;%7D,false)%7D)();
No comments:
Post a Comment