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