Guest User

Untitled

a guest
Sep 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. App.init = function() {
  2. // Prep the document
  3. App.video = document.querySelector('video');
  4.  
  5. App.glasses = new Image();
  6. App.glasses.src = "i/glasses.png";
  7.  
  8. App.canvas = document.querySelector("#output");
  9. App.ctx = this.canvas.getContext("2d");
  10.  
  11.  
  12. // Finally Check if we can run this puppy and go!
  13. if (navigator.webkitGetUserMedia) {
  14. navigator.webkitGetUserMedia('video', App.successCallback, App.errorCallback);
  15. }
  16.  
  17. App.start();
  18.  
  19. };
Add Comment
Please, Sign In to add comment