Advertisement
BrU32

Untitled

Dec 28th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <style>
  2. body{
  3.  
  4. filter:contrast(12);
  5.  
  6. }
  7. canvas{
  8.  
  9. filter:invert(3350%);
  10.  
  11.  
  12. }
  13. </style>
  14. <center>
  15. <body bgcolor="black" onmousemove="drawe();" onmousedown="drawe" onchange="drawe" ondoubkeclick="drawe;">
  16. <video id="video" autoplay hidden>
  17. </video>
  18. <canvas id="canvas" onchange="drawe;" topmost=false onchange="drawe;" width="1000" height="1000" style="opacity:1.0;fillColor:none; width:500px">
  19. <script>
  20. var i=22
  21. var video = document.getElementById("video");
  22. var canvas = document.getElementById("canvas");
  23. var ctx = canvas.getContext("2d");
  24. var video = document.getElementById('video');
  25. var mediaConfig = { video: true,audio:true};
  26. navigator.mediaDevices.getUserMedia(mediaConfig).then(function(stream) {
  27. video.src = this.window.URL.createObjectURL(stream);
  28. video.play();
  29. video.addEventListener("play", function() {i = window.setInterval(function() {
  30. canvas.style.contrast++;
  31. ctx.drawImage(video,0,0,1000,1000)},150);
  32. ctx.draw();
  33. }, false);
  34. });
  35. </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement