base-debug.html 699 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jquery.pep base demo - debug enabled </title>
  6. <!-- Load local jQuery. -->
  7. <script src="../libs/jquery/jquery.js"></script>
  8. <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
  9. <!-- Load local lib and tests. -->
  10. <script src="../src/jquery.pep.js"></script>
  11. <script type="text/javascript">
  12. $(document).ready(function(){
  13. $('.pep').pep({ debug: true });
  14. });
  15. </script>
  16. <style type="text/css">
  17. .pep{ width: 200px; height: 200px; background: blue; }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="pep"></div>
  22. </body>
  23. </html>