smoove.html 1005 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>jQuery Smoove - Gorgeous CSS3 Scroll Effects Test Suite</title>
  6. <!-- Load local jQuery. This can be overridden with a ?jquery=___ param. -->
  7. <script src="libs/jquery-loader.js"></script>
  8. <!-- Load local QUnit. -->
  9. <link rel="stylesheet" href="libs/qunit/qunit.css" media="screen">
  10. <script src="libs/qunit/qunit.js"></script>
  11. <!-- Load local lib and tests. -->
  12. <script src="../src/jquery.smoove.js"></script>
  13. <script src="smoove_test.js"></script>
  14. <!-- Removing access to jQuery and $. But it'll still be available as _$, if
  15. you REALLY want to mess around with jQuery in the console. REMEMBER WE
  16. ARE TESTING A PLUGIN HERE, THIS HELPS ENSURE BEST PRACTICES. REALLY. -->
  17. <script>window._$ = jQuery.noConflict(true);</script>
  18. </head>
  19. <body>
  20. <div id="qunit"></div>
  21. <div id="qunit-fixture">
  22. <div id="t1"></div>
  23. <div id="t2" data-move="10px,10px" data-transition="none"></div>
  24. </div>
  25. </body>
  26. </html>