Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <head>
  2. <meta charset="utf-8" />
  3. <meta name="format-detection" content="telephone=no" />
  4. <meta name="msapplication-tap-highlight" content="no" />
  5. <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
  6. <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
  7. <link rel="stylesheet" type="text/css" href="css/index.css" />
  8. <title>app</title>
  9. <script type="text/javascript" src="cordova.js"></script>
  10. <script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
  11. <script type="text/javascript" src="js/fastclick.js"></script>
  12. <script type="text/javascript" src="js/easel.js"></script>
  13. <script type="text/javascript" src="js/sound.js"></script>
  14. <script type="text/javascript" src="js/tween.js"></script>
  15. <script type="text/javascript" src="js/index.js"></script>
  16. </head>
  17.  
  18. <body onload="init();">
  19. <div class="app">
  20. <div class="center" id="floater">
  21. <p>Press "add" to add a ball.</p>
  22. <p>Drag it to its peak.</p>
  23. <p>Double click to drop.</p>
  24. <p id="hideButton">Start</p>
  25. <script type="text/javascript">
  26.  
  27. $("#hideButton").on("pressup", function() {
  28. $("#floater").remove();
  29. });
  30.  
  31. </script>
  32.  
  33. </div>
  34. <canvas id="myCanvas"></canvas>
  35. </div>
  36. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement