Hello, I am trying make a simple animation using javascript and leap motion. All i want to do is open up a web browser, have a .jpg image displayed, and be able to move it around with my hands. Very new to this and I am stuck. How do I go about doing this? This is what I have so far. Thank you.
<html>
<head>
</head>
<body>
<h1>Hello. This is my leap motion animation!</h1>
<div id="output"></div>
<img src="me.jpg" width ="400" height="285" />
<script src="//js.leapmotion.com/0.3.0-beta2/leap.js"></script>
<canvas id="scene" width="800" height="600"></canvas>
<script type="text/javascript">
</script>
</body>
</html>