<video controls autoplay webkit-playsinline playsinline loop muted>
<source src="http://video.itunes.apple.com/apple-assets-us-std-000001/Video118/v4/67/76/0d/67760df3-65e6-a3d3-02a7-81340664bcf2/mzvf_5168019211393929040.720w.h264lc.U.p.m4v">
</video>
<canvas></canvas>
body {
background: black;
}
canvas {
width:320px;
height:320px;
filter: blur(10px);
}
video {
width:320px;
height:320px;
}
var video = document.querySelector("video");
var canvas = document.querySelector("canvas");
var ctx = canvas.getContext("2d");
var w = canvas.clientWidth;
var h = canvas.clientHeight;
canvas.width = w;
canvas.height = h;
video.addEventListener("play", function() {
drawBlur();
});
function drawBlur() {
if (video.paused || video.ended) return false;
ctx.drawImage(video, 0, 0, w, h);
requestAnimationFrame(function() {
drawBlur();
});
}
document.addEventListener("touchstart", function() {
// video.requestFullscreen();
video.webkitEnterFullScreen();
});
setTimeout(function() {
video.webkitRequestFullscreen();
},3000);
/*
window.addEventListener("orientationchange", function() {
alert("the orientation of the device is now " + screen.orientation.angle);
});
*/
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.