/[projects]/misc/horsensspejder-web/jquery/jquery-ui-1.10.3/demos/datepicker/animation.html
ViewVC logotype

Contents of /misc/horsensspejder-web/jquery/jquery-ui-1.10.3/demos/datepicker/animation.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2125 - (show annotations) (download) (as text)
Wed Mar 12 19:30:05 2014 UTC (10 years, 3 months ago) by torben
File MIME type: text/html
File size: 1935 byte(s)
initial import
1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>jQuery UI Datepicker - Animations</title>
6 <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
7 <script src="../../jquery-1.9.1.js"></script>
8 <script src="../../ui/jquery.ui.core.js"></script>
9 <script src="../../ui/jquery.ui.widget.js"></script>
10 <script src="../../ui/jquery.ui.effect.js"></script>
11 <script src="../../ui/jquery.ui.effect-blind.js"></script>
12 <script src="../../ui/jquery.ui.effect-bounce.js"></script>
13 <script src="../../ui/jquery.ui.effect-clip.js"></script>
14 <script src="../../ui/jquery.ui.effect-drop.js"></script>
15 <script src="../../ui/jquery.ui.effect-fold.js"></script>
16 <script src="../../ui/jquery.ui.effect-slide.js"></script>
17 <script src="../../ui/jquery.ui.datepicker.js"></script>
18 <link rel="stylesheet" href="../demos.css">
19 <script>
20 $(function() {
21 $( "#datepicker" ).datepicker();
22 $( "#anim" ).change(function() {
23 $( "#datepicker" ).datepicker( "option", "showAnim", $( this ).val() );
24 });
25 });
26 </script>
27 </head>
28 <body>
29
30 <p>Date: <input type="text" id="datepicker" size="30"/></p>
31
32 <p>Animations:<br />
33 <select id="anim">
34 <option value="show">Show (default)</option>
35 <option value="slideDown">Slide down</option>
36 <option value="fadeIn">Fade in</option>
37 <option value="blind">Blind (UI Effect)</option>
38 <option value="bounce">Bounce (UI Effect)</option>
39 <option value="clip">Clip (UI Effect)</option>
40 <option value="drop">Drop (UI Effect)</option>
41 <option value="fold">Fold (UI Effect)</option>
42 <option value="slide">Slide (UI Effect)</option>
43 <option value="">None</option>
44 </select>
45 </p>
46
47 <div class="demo-description">
48 <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>
49 </div>
50 </body>
51 </html>

  ViewVC Help
Powered by ViewVC 1.1.20