Advertisement
Guest User

framerFB

a guest
Feb 17th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. // mobile & touch
  4. var touch = {x: 0, y: 0};
  5. document.addEventListener('touchmove', function(e){
  6. touch.x = e.clientX || e.pageX;
  7. touch.y = e.clientY || e.pageY
  8. }, false);
  9.  
  10. // desktop & mouse
  11. document.addEventListener('mousemove', function(e){
  12. touch.x = e.clientX || e.pageX;
  13. touch.y = e.clientY || e.pageY
  14. }, false);
  15.  
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement