aboutsummaryrefslogtreecommitdiffstats
path: root/demos/datepicker/animation.html
diff options
context:
space:
mode:
authorKeith Wood <kbwood.au@gmail.com>2009-12-08 00:08:44 +0000
committerKeith Wood <kbwood.au@gmail.com>2009-12-08 00:08:44 +0000
commit2b31eafb618ccc758bb0a66232a9154a54602c72 (patch)
treed23ac222b48f5cae8b713bc3fc13bca5dcfabbd9 /demos/datepicker/animation.html
parenta53da5ab89a2790e2c9b900d228799a46ed710a2 (diff)
downloadjquery-ui-2b31eafb618ccc758bb0a66232a9154a54602c72.tar.gz
jquery-ui-2b31eafb618ccc758bb0a66232a9154a54602c72.zip
Dstepicker - Demonstrate opening/closing animations
Diffstat (limited to 'demos/datepicker/animation.html')
-rw-r--r--demos/datepicker/animation.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/demos/datepicker/animation.html b/demos/datepicker/animation.html
new file mode 100644
index 000000000..804cc3d11
--- /dev/null
+++ b/demos/datepicker/animation.html
@@ -0,0 +1,54 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Datepicker - Animations</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.core.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.blind.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.bounce.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.clip.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.drop.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.fold.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.effects.slide.js"></script>
+ <script type="text/javascript" src="../../ui/jquery.ui.datepicker.js"></script>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+ <script type="text/javascript">
+ $(function() {
+ $("#datepicker").datepicker();
+ $("#anim").change(function() { $('#datepicker').datepicker('option', {showAnim: $(this).val()}); });
+ });
+ </script>
+</head>
+<body>
+
+<div class="demo">
+
+<p>Date: <input type="text" id="datepicker" size="30"/></p>
+
+<p>Animations:<br />
+ <select id="anim">
+ <option value="show">Show (default)</option>
+ <option value="slideDown">Slide down</option>
+ <option value="fadeIn">Fade in</option>
+ <!-- <option value="blind">Blind (UI Effect)</option>
+ <option value="bounce">Bounce (UI Effect)</option>
+ <option value="clip">Clip (UI Effect)</option>
+ <option value="drop">Drop (UI Effect)</option>
+ <option value="fold">Fold (UI Effect)</option>
+ <option value="slide">Slide (UI Effect)</option> -->
+ <option value="">None</option>
+ </select>
+</p>
+
+</div><!-- End demo -->
+
+<div class="demo-description">
+
+<p>Use different animations when opening or closing the datepicker. Choose an animation from the dropdown, then click on the input to see its effect. You can use one of the three standard animations or any of the UI Effects.</p>
+
+</div><!-- End demo-description -->
+
+</body>
+</html>