• Stars
    star
    358
  • Rank 118,855 (Top 3 %)
  • Language
    HTML
  • Created about 12 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An experiment to control a photo carousel using getUserMedia to watch for swipes left and right with a hand.

WebcamSwiper

An experiment/hack using getUserMedia to watch for swipes left and right with a hand. This could be applied to many different uses. Flipping through pictures in an image carousel, moving to the next item in a list, flipping pages of a book or magazine, etc.

Demo

Blog Post

Usage

Two custom events are added to the body tag by the library. You need to bind callbacks to these events and initialize the library. If desired you can stop the library with the destroy method as well.

  1. Include the webcam-swiper-0.1.js with a script tag or the loader of your choice.

  2. Bind the swipe events however you choose. Example with jQuery:

$("body").bind("webcamSwipeLeft", yourLeftEventHandler); $("body").bind("webcamSwipeRight", yourRightEventHandler);

  1. Start the webcam access with a call to the global initializeWebcamSwiper function like this:

window.initializeWebcamSwiper();

  1. Now it is running! If you choose to stop it call

window.destroyWebcamSwiper();