Dstepicker - Demonstrate opening/closing animations

This commit is contained in:
Keith Wood 2009-12-08 00:08:44 +00:00
parent a53da5ab89
commit 2b31eafb61
2 changed files with 55 additions and 0 deletions

View File

@ -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>

View File

@ -21,6 +21,7 @@
<li><a href="show-week.html">Show week of the year</a></li>
<li><a href="multiple-calendars.html">Display multiple months</a></li>
<li><a href="icon-trigger.html">Icon trigger</a></li>
<li><a href="animation.html">Animations</a></li>
<li><a href="event-search.html">Event Search</a></li>
</ul>
</div>